POST
/
handling-units
curl --request POST \
  --url https://api.truecold.io/v1/handling-units \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "id": "382bc9c0-6a3b-4255-97f4-98e91ceab047",
  "code": "25-BCN-XA43N",
  "material_code": "H-0023S",
  "delivery_id": "382bc9c0-6a3b-4255-97f4-98e91ceab047",
  "zone_id": "382bc9c0-6a3b-4255-97f4-98e91ceab047"
}'
{
  "error": false,
  "data": {
    "id": "<string>",
    "created_at": "<string>",
    "code": "<string>",
    "material_code": "<string>",
    "account_id": "<string>",
    "material_id": "<string>"
  }
}

Authorizations

x-api-key
string
header
required

Body

application/json
code
string
required

String that represents the internal handling unit code

Example:

"25-BCN-XA43N"

material_code
string
required

String that represents the internal material code

Example:

"H-0023S"

id
string

UUID of the handling unit

Example:

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

delivery_id
string

UUID of the delivery linked to the handling unit

Example:

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

zone_id
string

UUID of the zone linked to the handling unit

Example:

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

Response

200
application/json
error
boolean
Example:

false

data
object