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

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

# StatusChangeResponse

Details of a status change.

## 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:
    StatusChangeResponse:
      type: object
      properties:
        submittedByUserName:
          type: string
          description: The Central Dispatch username of the person who submitted the
            status change.
          nullable: true
          example: d71b5750-e89b-12d3-a456-426614174000
        dispatchStatusChangeId:
          type: string
          description: The ID of the dispatch status change.
          format: uuid
          example: 157a16f0-503d-4256-ba60-a4876e8eb9bb
        dateUtc:
          type: string
          description: The date and time of the status change, in UTC/ISO 8601 format.
          format: date-time
          example: 2024-10-31T00:00:00Z
        status:
          type: string
          description: The status of the dispatch.
          nullable: true
          example: PENDING_PICKUP
        cancellationReasonId:
          type: string
          description: The ID of the cancellation reason.
          nullable: true
          example: cac10000-e89b-12d3-a456-426614174000
        notes:
          type: string
          description: "Additional notes regarding the status change. **Deprecated**: Use
            `estimatedDateChangeNotes` instead."
          nullable: true
          example: Weather delay.
        estimatedDateChangeNotes:
          type: string
          description: Additional notes regarding the estimated date change.
          nullable: true
          example: Weather delay.
        submittedParty:
          type: string
          description: The party that submitted the status change e.g. SHIPPER or CARRIER.
          nullable: true
          example: SHIPPER
        submittedBy:
          type: string
          description: The Central Dispatch user ID of the user who submitted the status
            change.
          format: uuid
          nullable: true
          example: 3ca6e1c2-98fb-4b4e-bfd8-ffaec58fb347
      description: Details of a status change.
```
