PATCH
/
delivery-items
/
{id}
curl --request PATCH \
  --url https://api.truecold.io/v1/delivery-items/{id} \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "material_code": "103888",
  "material_name": "103888",
  "item": "103888",
  "temperature_range_id": "382bc9c0-6a3b-4255-97f4-98e91ceab047",
  "temperature_range_scope": "HANDLING_UNIT"
}'
{
  "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

Path Parameters

id
string
required

UUID of the delivery item

Example:

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

Body

application/json
material_code
string

String that represents the material code

Example:

"103888"

material_name
string

String that represents the material name

Example:

"103888"

item
string

String that identifies the content of the delivery item

Example:

"103888"

temperature_range_id
string

Id of the temperature range that can be linked to the delivery item

Example:

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

temperature_range_scope
enum<string>

Scope of the temperature range

Available options:
DELIVERY,
SHIPMENT,
HANDLING_UNIT
Example:

"HANDLING_UNIT"

Response

200
application/json
error
boolean
Example:

false

data
object