Chord Commerce Event Tracking
...
Track
Shipment Delivered
6 min
this event is triggered when an order shipment was delivered to the customer properties name type description required currency string iso currency code of the transaction (e g usd ) yes email string email address associated with the order no first name string customer's first name no last name string customer's last name no order date date date and time the order was placed yes order number string order id or number yes shipment object products in the order yes shipment name type description required tracking string tracking code of the shipment no carrier string name of the carrier fulfilling the shipment no number string shipment id/number yes cost number shipment cost no adjustment total number total of all adjustments/discounts of the shipment no additional tax total number no promo total number total of all promotions of the shipment no included tax total number no pushed string indicates if the shipment record has been sent to the warehouse/fulfillment centre/carrier no fulfilled by string iso date when the shipment was fulfilled/pushed no tracking detail string additional tracking information no external tracking url string url for customer to tracking shipping status no label url string url of electronically generated label no products object\[] products/inventory in the shipment no address object 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 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 string customer name no state name string iso state code for the shipping address no zipcode string zip or postal code for the shipping address no sample payload { "type" "track", "event" "shipment delivered", "properties" { "currency" "usd", "email" "test\@example com", "order number" "o1234567890", "first name" "john", "last name" "doe", "shipment" { "tracking" "t1234567890", "carrier" "ups", "number" "h1234567890", "cost" 9 99, "state" "ready", "adjustment total" 9 99, "additional tax total" 9 99, "promo total" 9 99, "included tax total" 9 99, "pushed" "true", "fulfilled by" "2026 01 01t00 00 00 000z", "tracking detail" null, "external tracking url" null, "label url" null, "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" } ], "address" { "name" "john doe", "address1" "123 fake st", "address2" null, "city" "oak lawn", "zipcode" "60532", "phone" "1234567890", "state name" "il", "company" null } } } } 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" "shipment delivered", "properties" { "currency" "usd", "email" "test\@example com", "order number" "o1234567890", "first name" "john", "last name" "doe", "shipment" { "tracking" "t1234567890", "carrier" "ups", "number" "h1234567890", "cost" 9 99, "state" "ready", "adjustment total" 9 99, "additional tax total" 9 99, "promo total" 9 99, "included tax total" 9 99, "pushed" "true", "fulfilled by" "2026 01 01t00 00 00 000z", "tracking detail" null, "external tracking url" null, "label url" null, "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" } ], "address" { "name" "john doe", "address1" "123 fake st", "address2" null, "city" "oak lawn", "zipcode" "60532", "phone" "1234567890", "state name" "il", "company" null } } } } '