Skip to main content
POST
/
shipments
Create shipment for order
curl --request POST \
  --url https://api.zochil.io/v3/monitoring/shipments \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "order_id": "<string>",
  "tracking_number": "<string>"
}
'

Authorizations

access-token
string
header
required

Body

application/json
order_id
string
required

The order ID to create shipment for

tracking_number
string
required

Tracking number for the shipment

Response

201

Shipment created successfully