Order
The Order
entity represents an order placed in your shop system.
Orders have two main states:
- Placed: order has been accepted and paid but not shipped.
- Fulfilled: order has been dispatched to a carrier for delivery.
- Partially fulfilled: for orders with multiple shipments, where not all of its products are sent at the same time.
Related entities
Shipment
See Shipment for more information.
Tracking
Order objects can have a list of trackings, that are inherently belonging to shipments.
The Tracking
entity represents a shipment with a valid tracking code (a FulfilledShipment
). Such shipments will receive updates from the carriers.
Operations
Search Orders
Search for shop orders (and its trackings if any) based on filters.
Authorizations:
path Parameters
slug required | string (Slug) The slug identifying the shop |
query Parameters
page | integer (Page) > 0 Default: 1 |
per_page | integer (Per Page) ( 0 .. 100 ] Default: 30 |
email_id | string (Email Id) |
external_id | string (External Id) |
order_name | string (Order Name) |
order_number | string (Order Number) |
uuid | string <uuid> (Uuid) |
zip_code | string (Zip Code) |
order_placed_from | string <date-time> (Order Placed From) |
order_placed_to | string <date-time> (Order Placed To) |
shipment_updated_since | string <date-time> (Shipment Updated Since) |
Responses
Response samples
- 200
- 400
- 401
- 403
- 422
- 500
[- {
- "order_number": "1234",
- "order_name": "IXF1234",
- "order_placed_at": "2023-03-17T09:51:41+00:00",
- "total_order_price": 29.99,
- "shipping_price": 4.99,
- "sub_total_price": 40,
- "discount_price": 4.99,
- "products": [
- {
- "title": "Product A",
- "quantity": 1,
- "price": 10,
- "images": [ ],
- "tax_lines": [ ],
- "bundled_products": [ ],
- "type": "product"
}
], - "discounts": [
- {
- "code": "ULTRA_OFFER",
- "amount": "10.0",
- "type": "percentage"
}
], - "address": {
- "city": "New York",
- "street": "123 Main St",
- "zip_code": "10001"
}, - "currency": "EUR",
- "segments": [
- "segment1",
- "segment2"
], - "weight": 1000,
- "external_customer_id": "1234067358984",
- "merchant_slug": "string",
- "external_id": "string",
- "uuid": "b4fadda9-61f4-4041-94d2-7a01ee0082b4",
- "trackings": [
- {
- "uuid": "ee5c4b53-f661-455e-85d2-a7b7bcaf81bf",
- "events": [
- {
- "event_key": "H10",
- "time": "2025-02-05T11:20:27+00:00",
- "location": {
- "city": "",
- "country": "Austria",
- "country_code": "AT",
- "formatted_address": "Austria",
- "full": "Austria, AT, 14.550072, 47.516231, Europe/Vienna",
- "latitude": 47.54401722075543,
- "line1": "",
- "line2": "",
- "location_type": "",
- "longitude": 14.02504506285114,
- "place": "Austria",
- "postal_code": "",
- "region": "",
- "state_or_province": "",
- "timezone": "Europe/Vienna"
}, - "phase": "delivered",
- "event_name": "SUCCESSFULLY_DELIVERED",
- "event_strings": {
- "event_status": "Yippee! Your parcel was successfully delivered.",
- "list_label": "Delivered: 2025-02-05T11:20:27+00:00",
- "header_headline": "DELIVERED",
- "header_title": "Home",
- "header_subtitle": ""
}, - "language": "en"
}, - {
- "event_key": "G20",
- "time": "2025-02-05T07:49:31+00:00",
- "location": {
- "city": "",
- "country": "Austria",
- "country_code": "AT",
- "formatted_address": "Austria",
- "full": "Austria, AT, 14.550072, 47.516231, Europe/Vienna",
- "latitude": 47.54401722075543,
- "line1": "",
- "line2": "",
- "location_type": "",
- "longitude": 14.02504506285114,
- "place": "Austria",
- "postal_code": "",
- "region": "",
- "state_or_province": "",
- "timezone": "Europe/Vienna"
}, - "phase": "in_delivery",
- "event_name": "OUT_FOR_DELIVERY",
- "event_strings": {
- "event_status": "Get ready! Your parcel is on the van and is likely to arrive today.",
- "list_label": "Arriving Today",
- "header_headline": "ARRIVING",
- "header_title": "Today",
- "header_subtitle": ""
}, - "language": "en"
}, - {
- "event_key": "E18",
- "time": "2025-02-04T08:34:10+00:00",
- "phase": "in_transit",
- "event_name": "DISPATCHED_FROM_SORTING_CENTER",
- "event_strings": {
- "event_status": "Moving on! Your parcel has left the sorting center.",
- "list_label": "Arriving Today",
- "header_headline": "IN TRANSIT",
- "header_title": "Today",
- "header_subtitle": ""
}, - "language": "en"
}, - {
- "event_key": "C20",
- "time": "2025-02-03T05:14:12+00:00",
- "phase": "order_processed",
- "event_name": "SHIPMENT_INFO_SENT_TO_LAST_MILE_SERVICE_PROVIDER",
- "event_strings": {
- "event_status": "Your parcel info was sent to DHL.",
- "list_label": "Dispatched",
- "header_headline": "DISPATCHED",
- "header_title": "DHL received your order",
- "header_subtitle": ""
}, - "language": "en"
}, - {
- "event_key": "A12",
- "time": "2025-02-03T05:14:12+00:00",
- "phase": "order_processed",
- "event_name": "ORDER_PROCESSED",
- "event_strings": {
- "event_status": "Your parcel has been packed and is ready to be shipped.",
- "list_label": "packed",
- "header_headline": "PACKED",
- "header_title": "Your parcel has been packed",
- "header_subtitle": ""
}, - "language": "en"
}, - {
- "event_key": "A10",
- "time": "2025-02-02T07:08:10+00:00",
- "phase": "order_created",
- "event_name": "ORDER_CREATED",
- "event_strings": {
- "event_status": "You've placed an online order.",
- "list_label": "Order placed",
- "header_headline": "ORDER PLACED",
- "header_title": "Thanks for shopping!",
- "header_subtitle": ""
}, - "language": "en"
}
], - "estimated_arrival": {
- "from": "2025-02-05T07:49:31+00:00",
- "to": "2025-02-05T11:20:27+00:00",
- "time_prediction": "Tomorrow",
- "language": "en"
}, - "carrier": {
- "tracking_number": "123456",
- "carrier_reference": "dhl",
}, - "flag": "normal",
- "pickup": {
- "type": "neighbor",
- "name": "John Doe",
- "address": {
- "city": "New York",
- "street": "123 Main St",
- "zip_code": "10001"
}
}, - "products": [
- {
- "title": "Individual Product",
- "quantity": 1,
- "price": 10,
- "sku": "123456",
- "weight": 100,
- "tax_lines": [ ],
- "bundled_products": [ ]
}, - {
- "title": "Product Bundle",
- "quantity": 2,
- "price": 20,
- "sku": "123457",
- "weight": 100,
- "tax_lines": [ ],
- "bundled_products": [
- {
- "title": "Bundled Product",
- "quantity": 1,
- "price": 10,
- "images": [ ],
- "tax_lines": [ ]
}
]
}
], - "id": "ee5c4b53-f661-455e-85d2-a7b7bcaf81bf",
- "merchant_id": "d7cbb719-2a7b-48d3-9116-153c60c800bd",
- "merchant_slug": "gokarla",
- "shop_slug": "gokarla",
- "order_id": "b721e24e-15ed-48d8-a7e7-4652bcaa60e3",
- "order_number": "123456"
}
]
}
]
Upsert Order
Process a shop order upsert.
Authorizations:
path Parameters
slug required | string (Slug) The slug identifying the shop |
Request Body schema: application/jsonrequired
id required | string (Id) Order reference whose type is defined by the id_type field |
id_type | string (OrderReferenceType) Default: "order_number" Enum: "uuid" "external_id" "order_name" "order_number" Type of order identifier that is passed in the reference field |
object (Order) Order information (will perform an upsert if provided) | |
required | Array of objects (Trackings) Tracking information relevant to the order (order must exist already if it is not provided) |
Responses
Request samples
- Payload
{- "id": "11334422",
- "id_type": "order_number",
- "order": {
- "order_number": "1234",
- "order_name": "IXF1234",
- "order_placed_at": "2023-03-17T09:51:41+00:00",
- "total_order_price": 29.99,
- "shipping_price": 4.99,
- "sub_total_price": 40,
- "discount_price": 4.99,
- "products": [
- {
- "title": "Product A",
- "quantity": 1,
- "price": 10,
- "images": [ ],
- "tax_lines": [ ],
- "bundled_products": [ ],
- "type": "product"
}
], - "discounts": [
- {
- "code": "ULTRA_OFFER",
- "amount": "10.0",
- "type": "percentage"
}
], - "address": {
- "city": "New York",
- "street": "123 Main St",
- "zip_code": "10001"
}, - "currency": "EUR",
- "segments": [
- "segment1",
- "segment2"
], - "weight": 1000,
- "external_customer_id": "1234067358984",
- "external_id": "2205783916624",
- "preferred_delivery_date": {
- "start": "2019-08-24T14:15:22Z",
- "end": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "source": "string"
}, - "user_agent": [
- "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36"
], - "order_analytics": { },
- "expected_number_of_shipments": 1
}, - "trackings": [
- {
- "tracking_number": "123456",
- "tracking_placed_at": "2025-06-04T16:26:05.980573+00:00",
- "products": [ ]
}
]
}
Response samples
- 200
- 400
- 401
- 403
- 422
- 500
null
Place Order
Process a shop order placement.
Authorizations:
path Parameters
slug required | string (Slug) The slug identifying the shop |
Request Body schema: application/jsonrequired
order_number required | string (Order Number) Opinionated numeric identification of the order |
order_name | string (Order Name) Opinionated name of the order |
order_placed_at | string <date-time> (Order Placed At) Date the order was placed. Will take current time if not provided |
total_order_price | number (Total Order Price) Total price of the order |
shipping_price | number (Shipping Price) Total shipping price of the order |
sub_total_price | number (Sub Total Price) Subtotal price of items before shipping and discounts |
discount_price | number (Discount Price) Default: 0 Total price of all the accumulated discounts |
Array of objects (Products) Default: [] Line items for the order | |
Array of objects (Discounts) Default: [] Discounts applied to the order | |
email_id | string (Email Id) Email address of the customer |
required | object (Address) Shipment delivery address |
currency | string (Currency) Default: "EUR" ISO 4217 currency code (default to 'EUR') |
segments | Array of strings (Segments) The segments to which the user of the order belongs |
weight | number (Weight) Total weight of the order in grams |
external_customer_id | string (External Customer Id) External ID of the customer who purchased the order |
order_status_url | string (Order Status Url) URL to the order status page as given by the shop provider |
external_id required | string (External Id) External identifier of the order as defined by the merchant shop system (e.g. shopify's order id) |
object (Preferred Delivery Date) Preferred delivery date for the order | |
user_agent | string (User Agent) User agent of the customer |
order_analytics | object (Order Analytics) Default: {} Analytics information related to the order. This information is not used for any computation, but can be used to track the order in the merchant's analytics system. |
expected_number_of_shipments | integer (Expected Number Of Shipments) <= 100 Default: 1 Expected number of shipments for the order (defaults to 1) |
Responses
Request samples
- Payload
{- "order_number": "1234",
- "order_name": "IXF1234",
- "order_placed_at": "2023-03-17T09:51:41+00:00",
- "total_order_price": 29.99,
- "shipping_price": 4.99,
- "sub_total_price": 40,
- "discount_price": 4.99,
- "products": [
- {
- "title": "Product A",
- "quantity": 1,
- "price": 10,
- "images": [ ],
- "tax_lines": [ ],
- "bundled_products": [ ],
- "type": "product"
}
], - "discounts": [
- {
- "code": "ULTRA_OFFER",
- "amount": "10.0",
- "type": "percentage"
}
], - "address": {
- "city": "New York",
- "street": "123 Main St",
- "zip_code": "10001"
}, - "currency": "EUR",
- "segments": [
- "segment1",
- "segment2"
], - "weight": 1000,
- "external_customer_id": "1234067358984",
- "external_id": "2205783916624",
- "preferred_delivery_date": {
- "start": "2019-08-24T14:15:22Z",
- "end": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "source": "string"
}, - "user_agent": [
- "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36"
], - "order_analytics": { },
- "expected_number_of_shipments": 1
}
Response samples
- 200
- 400
- 401
- 403
- 422
- 500
null
Update Order
Process a shop order update.
Authorizations:
path Parameters
slug required | string (Slug) The slug identifying the shop |
order_id required | string <uuid> (Order Id) The id given by Karla identifying the order |
Request Body schema: application/jsonrequired
object (Address) Shipment delivery address (skips update if undefined). | |
expected_number_of_shipments | integer (Expected Number Of Shipments) <= 100 Expected number of shipments for the order (skips update if undefined). |
Responses
Request samples
- Payload
{- "address": {
- "address_line_1": "Teststr. 1",
- "address_line_2": "2nd floor",
- "city": "Berlin",
- "country": "Germany",
- "country_code": "DE",
- "name": "Jane Doe",
- "phone": "+49 123 4567890",
- "province": "Berlin",
- "province_code": "BE",
- "street": "Teststr. 1, 2nd floor",
- "zip_code": "10119",
- "company": "Example GmbH"
}, - "expected_number_of_shipments": 1
}
Response samples
- 200
- 400
- 401
- 403
- 422
- 500
{- "order_number": "1234",
- "order_name": "IXF1234",
- "order_placed_at": "2023-03-17T09:51:41+00:00",
- "total_order_price": 29.99,
- "shipping_price": 4.99,
- "sub_total_price": 40,
- "discount_price": 4.99,
- "products": [
- {
- "title": "Product A",
- "quantity": 1,
- "price": 10,
- "images": [ ],
- "tax_lines": [ ],
- "bundled_products": [ ],
- "type": "product"
}
], - "discounts": [
- {
- "code": "ULTRA_OFFER",
- "amount": "10.0",
- "type": "percentage"
}
], - "address": {
- "city": "New York",
- "street": "123 Main St",
- "zip_code": "10001"
}, - "currency": "EUR",
- "segments": [
- "segment1",
- "segment2"
], - "weight": 1000,
- "external_customer_id": "1234067358984",
- "merchant_slug": "string",
- "external_id": "string",
- "uuid": "b4fadda9-61f4-4041-94d2-7a01ee0082b4",
- "trackings": [
- {
- "uuid": "ee5c4b53-f661-455e-85d2-a7b7bcaf81bf",
- "events": [
- {
- "event_key": "H10",
- "time": "2025-02-05T11:20:27+00:00",
- "location": {
- "city": "",
- "country": "Austria",
- "country_code": "AT",
- "formatted_address": "Austria",
- "full": "Austria, AT, 14.550072, 47.516231, Europe/Vienna",
- "latitude": 47.54401722075543,
- "line1": "",
- "line2": "",
- "location_type": "",
- "longitude": 14.02504506285114,
- "place": "Austria",
- "postal_code": "",
- "region": "",
- "state_or_province": "",
- "timezone": "Europe/Vienna"
}, - "phase": "delivered",
- "event_name": "SUCCESSFULLY_DELIVERED",
- "event_strings": {
- "event_status": "Yippee! Your parcel was successfully delivered.",
- "list_label": "Delivered: 2025-02-05T11:20:27+00:00",
- "header_headline": "DELIVERED",
- "header_title": "Home",
- "header_subtitle": ""
}, - "language": "en"
}, - {
- "event_key": "G20",
- "time": "2025-02-05T07:49:31+00:00",
- "location": {
- "city": "",
- "country": "Austria",
- "country_code": "AT",
- "formatted_address": "Austria",
- "full": "Austria, AT, 14.550072, 47.516231, Europe/Vienna",
- "latitude": 47.54401722075543,
- "line1": "",
- "line2": "",
- "location_type": "",
- "longitude": 14.02504506285114,
- "place": "Austria",
- "postal_code": "",
- "region": "",
- "state_or_province": "",
- "timezone": "Europe/Vienna"
}, - "phase": "in_delivery",
- "event_name": "OUT_FOR_DELIVERY",
- "event_strings": {
- "event_status": "Get ready! Your parcel is on the van and is likely to arrive today.",
- "list_label": "Arriving Today",
- "header_headline": "ARRIVING",
- "header_title": "Today",
- "header_subtitle": ""
}, - "language": "en"
}, - {
- "event_key": "E18",
- "time": "2025-02-04T08:34:10+00:00",
- "phase": "in_transit",
- "event_name": "DISPATCHED_FROM_SORTING_CENTER",
- "event_strings": {
- "event_status": "Moving on! Your parcel has left the sorting center.",
- "list_label": "Arriving Today",
- "header_headline": "IN TRANSIT",
- "header_title": "Today",
- "header_subtitle": ""
}, - "language": "en"
}, - {
- "event_key": "C20",
- "time": "2025-02-03T05:14:12+00:00",
- "phase": "order_processed",
- "event_name": "SHIPMENT_INFO_SENT_TO_LAST_MILE_SERVICE_PROVIDER",
- "event_strings": {
- "event_status": "Your parcel info was sent to DHL.",
- "list_label": "Dispatched",
- "header_headline": "DISPATCHED",
- "header_title": "DHL received your order",
- "header_subtitle": ""
}, - "language": "en"
}, - {
- "event_key": "A12",
- "time": "2025-02-03T05:14:12+00:00",
- "phase": "order_processed",
- "event_name": "ORDER_PROCESSED",
- "event_strings": {
- "event_status": "Your parcel has been packed and is ready to be shipped.",
- "list_label": "packed",
- "header_headline": "PACKED",
- "header_title": "Your parcel has been packed",
- "header_subtitle": ""
}, - "language": "en"
}, - {
- "event_key": "A10",
- "time": "2025-02-02T07:08:10+00:00",
- "phase": "order_created",
- "event_name": "ORDER_CREATED",
- "event_strings": {
- "event_status": "You've placed an online order.",
- "list_label": "Order placed",
- "header_headline": "ORDER PLACED",
- "header_title": "Thanks for shopping!",
- "header_subtitle": ""
}, - "language": "en"
}
], - "estimated_arrival": {
- "from": "2025-02-05T07:49:31+00:00",
- "to": "2025-02-05T11:20:27+00:00",
- "time_prediction": "Tomorrow",
- "language": "en"
}, - "carrier": {
- "tracking_number": "123456",
- "carrier_reference": "dhl",
}, - "flag": "normal",
- "pickup": {
- "type": "neighbor",
- "name": "John Doe",
- "address": {
- "city": "New York",
- "street": "123 Main St",
- "zip_code": "10001"
}
}, - "products": [
- {
- "title": "Individual Product",
- "quantity": 1,
- "price": 10,
- "sku": "123456",
- "weight": 100,
- "tax_lines": [ ],
- "bundled_products": [ ]
}, - {
- "title": "Product Bundle",
- "quantity": 2,
- "price": 20,
- "sku": "123457",
- "weight": 100,
- "tax_lines": [ ],
- "bundled_products": [
- {
- "title": "Bundled Product",
- "quantity": 1,
- "price": 10,
- "images": [ ],
- "tax_lines": [ ]
}
]
}
], - "id": "ee5c4b53-f661-455e-85d2-a7b7bcaf81bf",
- "merchant_id": "d7cbb719-2a7b-48d3-9116-153c60c800bd",
- "merchant_slug": "gokarla",
- "shop_slug": "gokarla",
- "order_id": "b721e24e-15ed-48d8-a7e7-4652bcaa60e3",
- "order_number": "123456"
}
]
}
Update Order Shipment
Process a shop order shipment update.
Authorizations:
path Parameters
slug required | string (Slug) The slug identifying the shop |
order_id required | string <uuid> (Order Id) The id given by Karla identifying the order |
shipment_id required | string <uuid> (Shipment Id) The id given by Karla identifying the tracking from the order |
Request Body schema: application/jsonrequired
tracking_url | string (Tracking Url) The tracking URL as it comes from the carrier. |
Array of objects (Products) Line items involved in the delivery. Give an empty list to remove all products from the shipment.Any list provided will override the current products in the shipment (there is no merge). Will be skipped from update if not given |
Responses
Request samples
- Payload
{- "tracking_url": "string",
- "products": [
- {
- "title": "Product A",
- "quantity": 1,
- "price": 10,
- "images": [ ],
- "tax_lines": [ ],
- "bundled_products": [ ],
- "type": "product"
}
]
}
Response samples
- 200
- 400
- 401
- 403
- 422
- 500
{- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
- "updated_at": "2019-08-24T14:15:22Z",
- "events": [
- {
- "event_key": "string",
- "time": "2019-08-24T14:15:22Z",
- "timezone": "string",
- "location": { },
- "additional_info": {
- "pickup_point": "string",
- "pickup_point_url": "string",
- "pickup_time": "2019-08-24T14:15:22Z",
- "pickup_opening_hours": {
- "property1": "string",
- "property2": "string"
}, - "mail_message": "string",
- "merchant_name": "string",
- "preferred_delivery_date": "2019-08-24T14:15:22Z",
- "tracking_link": "string",
- "carrier_name": "string",
- "date": "2019-08-24T14:15:22Z"
}, - "phase": "collect",
- "event_name": "string",
- "event_strings": {
- "event_status": "string",
- "list_label": "string",
- "header_headline": "string",
- "header_title": "string",
- "header_subtitle": "string"
}, - "language": "da"
}
], - "estimated_arrival": {
- "from": "2019-08-24T14:15:22Z",
- "to": "2019-08-24T14:15:22Z",
- "time_prediction": "string",
- "language": "da"
}, - "carrier": {
- "tracking_number": "string",
- "carrier_reference": "string",
- "tracking_url": "string"
}, - "flag": "normal",
- "pickup": {
- "type": "shop",
- "name": "string",
- "address": {
- "address_line_1": "Teststr. 1",
- "address_line_2": "2nd floor",
- "city": "Berlin",
- "country": "Germany",
- "country_code": "DE",
- "name": "Jane Doe",
- "phone": "+49 123 4567890",
- "province": "Berlin",
- "province_code": "BE",
- "street": "Teststr. 1, 2nd floor",
- "zip_code": "10119",
- "company": "Example GmbH"
}, - "url": "string",
- "opening_hours": "string",
- "date_to": "2019-08-24T14:15:22Z"
}, - "products": [ ],
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "merchant_id": "500924a8-3f5e-4c00-beb8-2efcde988aea",
- "merchant_slug": "string",
- "shop_slug": "string",
- "order_id": "93101167-9065-4b9c-b98b-5d789a3ed9fe",
- "order_number": "string"
}
Fulfill Orders
Process a shop order fulfillment in bulk (via shop slug).
Authorizations:
path Parameters
slug required | string (Slug) The slug identifying the shop |
Request Body schema: application/jsonrequired
id required | string (Id) Order reference whose type is defined by the id_type field |
id_type | string (OrderReferenceType) Default: "order_number" Enum: "uuid" "external_id" "order_name" "order_number" Type of order identifier that is passed in the reference field |
object (Order) Order information (will perform an upsert if provided) | |
required | Array of objects (Trackings) Tracking information relevant to the order (order must exist already if it is not provided) |
Responses
Request samples
- Payload
[- {
- "id": "11334422",
- "id_type": "order_number",
- "order": {
- "order_number": "1234",
- "order_name": "IXF1234",
- "order_placed_at": "2023-03-17T09:51:41+00:00",
- "total_order_price": 29.99,
- "shipping_price": 4.99,
- "sub_total_price": 40,
- "discount_price": 4.99,
- "products": [
- {
- "title": "Product A",
- "quantity": 1,
- "price": 10,
- "images": [ ],
- "tax_lines": [ ],
- "bundled_products": [ ],
- "type": "product"
}
], - "discounts": [
- {
- "code": "ULTRA_OFFER",
- "amount": "10.0",
- "type": "percentage"
}
], - "address": {
- "city": "New York",
- "street": "123 Main St",
- "zip_code": "10001"
}, - "currency": "EUR",
- "segments": [
- "segment1",
- "segment2"
], - "weight": 1000,
- "external_customer_id": "1234067358984",
- "external_id": "2205783916624",
- "preferred_delivery_date": {
- "start": "2019-08-24T14:15:22Z",
- "end": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "source": "string"
}, - "user_agent": [
- "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36"
], - "order_analytics": { },
- "expected_number_of_shipments": 1
}, - "trackings": [
- {
- "tracking_number": "123456",
- "tracking_placed_at": "2025-06-04T16:26:05.980573+00:00",
- "products": [ ]
}
]
}
]
Response samples
- 200
- 400
- 401
- 403
- 422
- 500
null