---
title: "DriversResponse"
url: "https://api-docs.centraldispatch.com/apis/fulfillment-api-1-0-0/versions/ed4f06d9-fab0-4a1d-a6a8-ce631f6542d0/schemas/DriversResponse"
---

> Full API specification: https://api-docs.centraldispatch.com/apis/fulfillment-api-1-0-0/versions/ed4f06d9-fab0-4a1d-a6a8-ce631f6542d0.md

# DriversResponse

Details of the drivers.

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: Fulfillment API
  version: 1.0.0
servers:
  - url: https://fulfillment-api.centraldispatch.com
    description: Production server
components:
  schemas:
    DriversResponse:
      type: object
      properties:
        users:
          type: array
          items:
            type: string
            format: uuid
          description: A collection of user IDs representing the drivers.
          nullable: true
          example:
            - ddd151ee-b1d3-4cec-8eb5-4a21bddd900b
            - 157a16f0-503d-4256-ba60-a4876e8eb9bb
      description: Details of the drivers.
      nullable: true
```
