Create temperature range
Overview
Shipments
Deliveries
Handling units
Materials
Temperature ranges
Delivery items
Create temperature range
POST
/
temperature-ranges
curl --request POST \
--url https://api.truecold.io/v1/temperature-ranges \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"id": "382bc9c0-6a3b-4255-97f4-98e91ceab047",
"min_temp": -4,
"max_temp": 20,
"default_allowance": 5,
"account_id": "382bc9c0-6a3b-4255-97f4-98e91ceab047"
}'
{
"error": false,
"data": {
"id": "<string>",
"created_at": "<string>",
"min_temp": 123,
"max_temp": 123,
"default_allowance": 123,
"account_id": "<string>"
}
}
Authorizations
Body
application/json
Response
200
application/json
The response is of type object
.
curl --request POST \
--url https://api.truecold.io/v1/temperature-ranges \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"id": "382bc9c0-6a3b-4255-97f4-98e91ceab047",
"min_temp": -4,
"max_temp": 20,
"default_allowance": 5,
"account_id": "382bc9c0-6a3b-4255-97f4-98e91ceab047"
}'
{
"error": false,
"data": {
"id": "<string>",
"created_at": "<string>",
"min_temp": 123,
"max_temp": 123,
"default_allowance": 123,
"account_id": "<string>"
}
}