cURL
curl --request GET \ --url https://{company}.datatruck.io/api/v1/openapi/orders/dispatcher-board/list/ \ --header 'Authorization: <api-key>'
{ "count": 123, "next": "<string>", "previous": "<string>", "results": [ { "total_driver_pay": 0, "total_gross": 0, "total_mile": 0, "total_rpm": 0, "total_trips": 123, "dispatcher": { "id": 123, "full_name": "<string>" }, "drivers": [ { "id": 123, "full_name": "<string>" } ] } ] }
Retrieve a list of work orders with related tasks, payments, and tags.
Page number for paginated results
1
Filter work orders by status
List of dispatcher board retrieved successfully
Total number of dispatcher board entries.
URL to the next page of results.
URL to the previous page of results.
List of dispatcher board entries.
Show child attributes
Total driver pay for the dispatcher's orders.
-1000000000000000000 <= x <= 1000000000000000000
Total gross amount for the dispatcher's orders.
Total miles covered by the dispatcher's orders.
Total revenue per mile for the dispatcher's orders.
Total number of trips for the dispatcher's orders.
Details of the dispatcher, if assigned.
Unique identifier for the dispatcher.
Full name of the dispatcher.
List of drivers associated with the dispatcher.
Unique identifier for the driver.
Full name of the driver.