GET
/
delivery-items
curl --request GET \
  --url https://api.truecold.io/v1/delivery-items \
  --header 'x-api-key: <api-key>'
{
  "error": false,
  "data": [
    {
      "id": "<string>",
      "created_at": "<string>",
      "delivery_id": "<string>",
      "item": "<string>",
      "material_code": "<string>",
      "material_name": "<string>",
      "soft_deleted": "<string>",
      "soft_deleted_by": "<string>",
      "material_id": "<string>",
      "temperature_range_id": "<string>",
      "temperature_range_scope": "<string>"
    }
  ]
}

Authorizations

x-api-key
string
header
required

Query Parameters

id
string

UUID of the delivery item

Example:

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

material_code
string

String that represents the internal material code

Example:

"25-BCN-XA43N"

sort
enum<string>

Sort the deliveries by created_at date

Available options:
asc,
desc

Response

200
application/json
error
boolean
Example:

false

data
object[]