Chord Commerce Event Tracking
...
Track
Subscription Resumed
5 min
this event is triggered when a paused subscription was resumed properties name type description required subscription id string unique id of the subscription yes interval length number combined with interval units , specifies the cadence of the subscription e g for a 3 week cadence, this value will be 3 no interval units string combined with interval length , specifies the cadence of the subscription e g for a 3 week cadence, this value will be weeks no actionable date string iso date when the next installment order will be generated no state string state of the subscription (e g active , paused , canceled ) no payment method name string name of the payment method for installment orders no email string email address associated with the subscription no canceled at string iso date when the subscription was canceled, if applicable no canceled by string email address of the user who canceled the subscription, if applicable no activated at string iso date when the subscription was activated yes address object shipping address of the subscription yes products object\[] products in the subscription yes address name type description required address1 string the street address of the customer no address2 string additional street address of the customer (if necessary) no alternative phone string customer's alternative phone number no phone string customer's phone number no city string city of the shipping address no company string name of the company, if applicable no country string iso country code for the shipping address no name customer name no state string iso state code for the shipping address no zipcode string zip or postal code for the shipping address no products array name type description required affiliation string store or affiliation from which this transaction occurred (for example, "google store") no brand string brand associated with the product no line item id string id of the line item in the database no name string name of the product yes position number position in the product list no price number price of the product yes product id string id of the product in the database yes quantity number the quantity of products purchased in this line item yes revenue number revenue ($) associated with this line item (excluding shipping and tax) yes sku string sku of the variant yes variant name string name of the variant no variant id string id of the variant in the database no sample payload { "type" "track", "event" "subscription resumed", "properties" { "subscription id" "1", "interval length" 3, "interval units" "weeks", "actionable date" "2026 01 01t00 00 00 000z", "state" "active", "payment method name" "stripe", "email" "user\@example com", "canceled at" null, "canceled by" null, "activated at" "2026 01 01t00 00 00 000z", "address" { "address1" "123 fake st", "address2" null, "alternative phone" null, "phone" "123456789", "city" "oak lawn", "state" "il", "country" "us", "name" "john doe", "zipcode" "60532" }, "products" \[ { "affiliation" "affiliation", "brand" "brand", "line item id" "16207084552295", "name" "product name", "position" 1, "price" 219, "product id" "7036464939671", "quantity" 1, "revenue" 219, "sku" "sku123", "variant" "variant name", "variant id" "40952658057847" } ] } } example curl https //production cdp ingest chord co/api/track \\ \ header "content type application/json" \\ \ header "x write key $cdp write key" \\ \ data raw ' { "type" "track", "event" "subscription resumed", "properties" { "subscription id" "1", "interval length" 3, "interval units" "weeks", "actionable date" "2026 01 01t00 00 00 000z", "state" "active", "payment method name" "stripe", "email" "user\@example com", "canceled at" null, "canceled by" null, "activated at" "2026 01 01t00 00 00 000z", "address" { "address1" "123 fake st", "address2" null, "alternative phone" null, "phone" "123456789", "city" "oak lawn", "state" "il", "country" "us", "name" "john doe", "zipcode" "60532" }, "products" \[ { "affiliation" "affiliation", "brand" "brand", "line item id" "16207084552295", "name" "product name", "position" 1, "price" 219, "product id" "7036464939671", "quantity" 1, "revenue" 219, "sku" "sku123", "variant" "variant name", "variant id" "40952658057847" } ] } } '