Create shipment
Overview
Shipments
Deliveries
Handling units
Materials
Temperature ranges
Delivery items
Create shipment
POST
/
shipments
curl --request POST \
--url https://api.truecold.io/v1/shipments \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"id": "2381029e-7566-4ba4-b842-1c03dd13010a",
"code": "152670"
}'
{
"error": false,
"data": {
"id": "<string>",
"code": "<string>",
"account_id": "<string>",
"created_at": "<string>"
}
}
Authorizations
Body
application/json
String that represents the internal shipment code
Example:
"152670"
UUID of the shipment
Example:
"2381029e-7566-4ba4-b842-1c03dd13010a"
curl --request POST \
--url https://api.truecold.io/v1/shipments \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"id": "2381029e-7566-4ba4-b842-1c03dd13010a",
"code": "152670"
}'
{
"error": false,
"data": {
"id": "<string>",
"code": "<string>",
"account_id": "<string>",
"created_at": "<string>"
}
}