---
title: "DateSearchRequest"
url: "https://stage-api-docs.centraldispatch.com/apis/stage-fulfillment-api-1-0-0/versions/8637c155-7ff6-49fa-ac0a-3b4df78c9665/schemas/DateSearchRequest"
---

> Full API specification: https://stage-api-docs.centraldispatch.com/apis/stage-fulfillment-api-1-0-0/versions/8637c155-7ff6-49fa-ac0a-3b4df78c9665.md

# DateSearchRequest

Search dispatch date request.

## 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:
    DateSearchRequest:
      type: object
      properties:
        op:
          type: string
          description: "The operation type for the date comparison. Values: `RANGE`, `EQ`,
            `NEQ`."
          example: RANGE
        startDateTime:
          type: string
          description: The start date and time, in UTC/ISO 8601 format.
          format: date-time
        endDateTime:
          type: string
          description: The end date and time, in UTC/ISO 8601 format. Required for `RANGE`
            and must be equal or greater than `startDateTime`.
          format: date-time
      description: Search dispatch date request.
      nullable: true
```
