Skip to main content
GET
/
orders
/
dispatcher-board
/
list
Dispatcher Board List
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>"
        }
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

Query Parameters

page
integer

Page number for paginated results

Example:

1

status
string

Filter work orders by status

Response

List of dispatcher board retrieved successfully

count
integer
required

Total number of dispatcher board entries.

next
string | null
required

URL to the next page of results.

previous
string | null
required

URL to the previous page of results.

results
object[]
required

List of dispatcher board entries.