Add new work orders permission. The request body must be wrapped in a WorkOrder object. Only title is required.number is generated when omitted, start_date defaults to today when omitted, the creator is recorded as the authenticated user, and status is set to Open (or Draft when is_draft is sent). On success the new work order id is returned with HTTP 202.curl --location --globoff 'https://.daftra.com/api2/work_orders.json' \
--header 'Accept: application/json' \
--header 'apikey: ' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{"WorkOrder":{"title":"AC maintenance","client_id":15,"start_date":"2026-06-01","delivery_date":"2026-06-10","budget":1500,"budget_currency":"USD"}}'{
"result": "successful",
"code": 202,
"id": 2415
}