GET
/
handling-units
curl --request GET \
  --url https://api.truecold.io/v1/handling-units \
  --header 'x-api-key: <api-key>'
{
  "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

Query Parameters

id
string

UUID of the handling unit

Example:

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

material_id
string

UUID of the material

Example:

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

code
string

String that represents the internal handling unit code

Example:

"25-BCN-XA43N"

material_code
string

String that represents the internal material code

Example:

"H-0023S"

sort
enum<string>

Sort the handling units by created_at date

Available options:
asc,
desc

Response

200
application/json
error
boolean
Example:

false

data
object[]