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

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

# CancelReasonResponse

Details of cancel reasons.

## 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:
    ResponsibleParty:
      enum:
        - CARRIER
        - SHIPPER
        - ALL
      description: The party responsible for the cancellation. This list is not
        exhaustive and additional values may be added at any time.
      example: SHIPPER
    CancelReasonResponse:
      type: object
      properties:
        responsibleParty:
          $ref: "#/components/schemas/ResponsibleParty"
        id:
          type: string
          description: The ID of the cancellation reason.
          format: uuid
          example: cac10000-e89b-12d3-a456-426614174000
        name:
          type: string
          description: The name of the cancellation reason.
          example: Carrier Unresponsive/Late
      description: Details of cancel reasons.
```
