Order Item Status Update Webhooks
This is a dummy endpoint that demonstrates the webhook payload structure that will be sent to webhook subscribers when an order_items.shipped event occurs.
The actual webhooks will be sent asynchronously to the URLs specified in the webhook subscriptions that are subscribed to the order_items.shipped event type.
The webhook payload includes:
id: ID of the webhook message
event: The event type (order_items.shipped)
timestamp: When the event occurred
subscription_id: ID of the webhook subscription
message: The shipment data in the same format as the GET /shipments/{id} endpoint
ID of the webhook message
1Event type of webhook message
UTC timestamp when the event was created
ID of the subscription
ID (integer) of this property
1OK
No content
POST /api/v1/webhooks/order-items-shipped HTTP/1.1
Host:
X-API-Key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 341
{
"id": 1,
"event": "text",
"timestamp": "2025-12-03T00:22:20.696Z",
"message": {
"items": [
{
"return_tracking_key": "text",
"shipment_tracking_key": "text",
"sku": "text",
"status": "open",
"id": 1,
"vat": 19,
"price_without_tax": 1,
"price_with_tax": 1,
"custom_data": {}
}
],
"carrier_key": "text",
"return_tracking_key": "text",
"tracking_key": "text"
},
"subscription_id": 1
}OK
No content
This is a dummy endpoint that demonstrates the webhook payload structure that will be sent to webhook subscribers when an order_items.cancelled event occurs.
The actual webhooks will be sent asynchronously to the URLs specified in the webhook subscriptions that are subscribed to the order_items.cancelled event type.
The webhook payload includes:
id: ID of the webhook message
event: The event type (order_items.cancelled)
timestamp: When the event occurred
subscription_id: ID of the webhook subscription
message: The shipment data in the same format as the GET /shipments/{id} endpoint
ID of the webhook message
1Event type of webhook message
UTC timestamp when the event was created
ID of the subscription
ID (integer) of this property
1OK
No content
POST /api/v1/webhooks/order-items-cancelled HTTP/1.1
Host:
X-API-Key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 341
{
"id": 1,
"event": "text",
"timestamp": "2025-12-03T00:22:20.696Z",
"message": {
"items": [
{
"return_tracking_key": "text",
"shipment_tracking_key": "text",
"sku": "text",
"status": "open",
"id": 1,
"vat": 19,
"price_without_tax": 1,
"price_with_tax": 1,
"custom_data": {}
}
],
"carrier_key": "text",
"return_tracking_key": "text",
"tracking_key": "text"
},
"subscription_id": 1
}OK
No content
This is a dummy endpoint that demonstrates the webhook payload structure that will be sent to webhook subscribers when an order_items.returned event occurs.
The actual webhooks will be sent asynchronously to the URLs specified in the webhook subscriptions that are subscribed to the order_items.returned event type.
The webhook payload includes:
id: ID of the webhook message
event: The event type (order_items.returned)
timestamp: When the event occurred
subscription_id: ID of the webhook subscription
message: The shipment data in the same format as the GET /shipments/{id} endpoint
ID of the webhook message
1Event type of webhook message
UTC timestamp when the event was created
ID of the subscription
ID (integer) of this property
1OK
No content
POST /api/v1/webhooks/order-items-returned HTTP/1.1
Host:
X-API-Key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 341
{
"id": 1,
"event": "text",
"timestamp": "2025-12-03T00:22:20.696Z",
"message": {
"items": [
{
"return_tracking_key": "text",
"shipment_tracking_key": "text",
"sku": "text",
"status": "open",
"id": 1,
"vat": 19,
"price_without_tax": 1,
"price_with_tax": 1,
"custom_data": {}
}
],
"carrier_key": "text",
"return_tracking_key": "text",
"tracking_key": "text"
},
"subscription_id": 1
}OK
No content
Last updated
Was this helpful?

