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

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

# DriverSearchRequest

Driver IDs search.

## 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:
    DriverSearchRequest:
      type: object
      properties:
        op:
          type: string
          description: "The operation type for the driver IDs. Values: `EQ`, `NEQ`."
          example: EQ
        values:
          type: array
          items:
            type: string
          description: A collection of driver ID values.
          example:
            - d71b5750-e89b-12d3-a456-426614174000
            - 3ca6e1c2-98fb-4b4e-bfd8-ffaec58fb347
      description: Driver IDs search.
      nullable: true
```
