Reference Data
List equipment
Read-only catalog of equipment types. The ids are what order and load equipment arrays reference. The list is system-managed and small — fetch it once and cache it, or hardcode the ids your integration uses.
The catalog is global and organization-independent: every authenticated organization sees the same rows.
get/reference-data/equipment
Query parameters
categoryIdstring uuid
Only return equipment in this category
groupIdstring uuid
Only return equipment in this top-level group
subcategoryIdstring uuid
Only return equipment in this subcategory
Response
Successful response
Example response
{
"data": [
{
"name": "Van 53'",
"category": {
"name": "Van"
},
"group": {
"name": "Trailer"
}
}
]
}