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

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

# RespondToDispatchRequest

Details of the respond 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:
    RespondToDispatchRequest:
      type: object
      properties:
        accept:
          type: boolean
          description: Indicates whether the dispatch should be accepted or declined.
          example: true
        inspectionAcknowledged:
          type: boolean
          description: Indicates whether the require inspection requirement was
            acknoowledged.
          default: false
          example: true
        carrierEstimatedPickupDate:
          type: string
          description: The date the carrier estimates the vehicle will be picked up, in
            UTC/ISO 8601 format. Only the date portion of the value passed will
            be saved.
          format: date-time
          nullable: true
          example: 2025-07-15T00:00:00.000Z
        carrierEstimatedDeliveryDate:
          type: string
          description: The type of delivery date. Only the date portion of the value
            passed will be saved.
          format: date-time
          nullable: true
          example: 2025-08-15T00:00:00.000Z
      description: Details of the respond request.
      nullable: true
```
