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

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

# CancelDispatchRequest

Details of a dispatch cancellation.

## 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:
    CancelDispatchRequest:
      type: object
      properties:
        dispatchId:
          type: string
          description: The ID of the dispatch.
          format: uuid
          example: d159acc0-e89b-12d3-a456-426614174000
        cancellationReasonId:
          type: string
          description: The ID of the cancellation reason. This value can be retrieved
            using the 'Get Cancellation Reasons' endpoint. Required if caller is
            a carrier.
          format: uuid
          example: cac10000-e89b-12d3-a456-426614174000
        notes:
          type: string
          description: Additional notes regarding the cancellation.
          nullable: true
          example: Weather delay.
        postPickupCancelOverride:
          type: boolean
          description: Indicates if a cancellation override after vehicle pick up is
            allowed.
          default: false
          example: true
      description: Details of a dispatch cancellation.
      nullable: true
```
