POST
/
materials
curl --request POST \
  --url https://api.truecold.io/v1/materials \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "material_code": "25-BCN-XA43N",
  "material_name": "TC YEASTOLATE 10KG",
  "allowance": "10",
  "temperature_range_id": "382bc9c0-6a3b-4255-97f4-98e91ceab047"
}'
{
  "error": false,
  "data": {
    "id": "<string>",
    "created_at": "<string>",
    "account_id": "<string>",
    "material_code": "<string>",
    "material_name": "<string>",
    "allowance": 123,
    "temperature_range_id": "<string>",
    "soft_deleted": "<string>",
    "soft_deleted_by": "<string>"
  }
}

Authorizations

x-api-key
string
header
required

Body

application/json
material_code
string
required

String that represents the internal material code

Example:

"25-BCN-XA43N"

material_name
string
required

String that represents the material name

Example:

"TC YEASTOLATE 10KG"

allowance
number
required

String that represents the material allowance, the allowance is the amount of time that the material can be outside the temperature range

Example:

"10"

temperature_range_id
string
required

UUID of the temperature range of the material

Example:

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

Response

201
application/json
error
boolean
Example:

false

data
object