Job Materials

Create a new Job Material

OAuth Scope

This endpoint requires the following OAuth scope manage_job_materials.

Record UUID

UUID is optional for record creation. If no UUID is supplied, a UUID will be automatically generated for the new record and returned in the x-record-uuid response header.

post/jobmaterial.json

Request body

uuidstring uuid

Unique identifier for this record

active0 | 1

Record active/deleted flag. Valid values are [0,1]

edit_datestring

Timestamp at which record was last modified

job_uuidstring uuid
material_uuidstring uuid
namestring
quantitystring required
pricestring
displayed_amountstring
displayed_amount_is_tax_inclusivestring
tax_rate_uuidstring uuid
sort_orderstring
coststring
displayed_coststring
job_material_bundle_uuidstring uuid

UUID of a JobMaterialBundle which this JobMaterial belongs to. The default value is blank, which means that the JobMaterial is not part of a JobMaterialBundle.

Example request

{
  "uuid": "123e4567-903a-4b3b-bb73-230fe882d2ab",
  "edit_date": "2025-07-01 12:00:00",
  "job_uuid": "123e4567-d431-4d34-bd1c-230febe2de8b",
  "material_uuid": "123e4567-0654-40af-afbd-230fe4b15c5b",
  "tax_rate_uuid": "123e4567-e9b0-498f-8b0e-230fe62c7f4b",
  "job_material_bundle_uuid": "123e4567-2f36-48ff-a9d2-230fe40a8edb"
}

Response

Success

errorCodenumber
messagestring

Example response

{
  "message": "OK"
}

Changes