PATCH
/
shipments
/
{id}
curl --request PATCH \
  --url https://api.truecold.io/v1/shipments/{id} \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "code": "25-BCN-XA43N"
}'
{
  "error": false,
  "data": {
    "id": "<string>",
    "code": "<string>",
    "account_id": "<string>",
    "created_at": "<string>"
  }
}

Authorizations

x-api-key
string
header
required

Path Parameters

id
string
required

UUID of the shimpent

Example:

"382bc9c0-6a3b-4255-97f4-98e91ceab047"

Body

application/json
code
string
required

String that represents the internal shipment code

Example:

"25-BCN-XA43N"

Response

200
application/json
error
boolean
Example:

false

data
object