View his work orders or View all work orders permission. Staff who only hold View his work orders see only the work orders they created or are assigned to. Workflow-type entities are excluded — only classic work orders are returned.status filter is supplied, the list returns only Open work orders. Pass status=-1 to return every status, or a specific status value to filter.WorkOrder key; related records (client, staff, follow-up status) are not embedded.curl --location --globoff 'https://.daftra.com/api2/work_orders.json?limit=undefined&page=undefined&status=undefined' \
--header 'Accept: application/json' \
--header 'apikey: ' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json'{
"result": "successful",
"code": 200,
"data": [
{
"WorkOrder": {
"id": 84,
"staff_id": 0,
"client_id": 15,
"number": "21",
"title": "AC maintenance",
"status": 1,
"start_date": "2026-06-01",
"delivery_date": "2026-06-10",
"delivery_appointment_id": 0,
"follow_up_status_id": null,
"description": "string",
"budget": 1500,
"budget_currency": "USD",
"client_data": "string",
"created": "2026-06-01 09:12:00",
"modified": "2026-06-01 09:12:00"
}
}
],
"pagination": {
"prev": "/api2/work_orders.json?page=1",
"next": "/api2/work_orders.json?page=3",
"page": 2,
"page_count": 5,
"total_results": 98
}
}