Get shipment by id
Overview
Shipments
Deliveries
Handling units
Materials
Temperature ranges
Delivery items
Get shipment by id
GET
/
shipments
/
{id}
curl --request GET \
--url https://api.truecold.io/v1/shipments/{id} \
--header 'x-api-key: <api-key>'
{
"error": false,
"data": {
"id": "<string>",
"code": "<string>",
"account_id": "<string>",
"created_at": "<string>"
}
}
Authorizations
Path Parameters
UUID of the shimpent
Example:
"382bc9c0-6a3b-4255-97f4-98e91ceab047"
curl --request GET \
--url https://api.truecold.io/v1/shipments/{id} \
--header 'x-api-key: <api-key>'
{
"error": false,
"data": {
"id": "<string>",
"code": "<string>",
"account_id": "<string>",
"created_at": "<string>"
}
}