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

x-api-key
string
header
required

Body

application/json
code
string
required

String that represents the internal shipment code

Example:

"152670"

id
string

UUID of the shipment

Example:

"2381029e-7566-4ba4-b842-1c03dd13010a"

Response

201
application/json
error
boolean
Example:

false

data
object