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

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

# VehicleDateChangeResponse

Details of a vehicle date 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:
    VehicleDateChangeResponse:
      type: object
      properties:
        dateType:
          enum:
            - ESTIMATED_PICKUP
            - ACTUAL_PICKUP
            - ESTIMATED_DROPOFF
            - ACTUAL_DROPOFF
            - SHIPPER_REQUESTED_PICKUP
            - SHIPPER_REQUESTED_DROPOFF
            - CARRIER_ESTIMATED_PICKUP
            - CARRIER_ESTIMATED_DROPOFF
          type: string
          description: The type of date. This list is not exhaustive and additional values
            may be added at any time.
          nullable: true
          example: ESTIMATED_PICKUP
        priorDate:
          type: string
          description: The date before the change, in UTC/ISO 8601 format.
          format: date-time
          nullable: true
          example: 2025-08-15T00:00:00.000Z
        newDate:
          type: string
          description: The date after the change, in UTC/ISO 8601 format.
          format: date-time
          nullable: true
          example: 2025-09-30T00:00:00.000Z
        dateChangeReasonId:
          type: string
          description: The ID of the date change reason.
          nullable: true
          example: da1e0000-e89b-12d3-a456-426614174000
        notes:
          type: string
          description: Additional notes regarding the date change.
          nullable: true
          example: Weather delay.
        dateChangedUtc:
          type: string
          description: The date and time the change was made, in UTC/ISO 8601 format.
          format: date-time
          example: 2024-09-10T00:00:00Z
      description: Details of a vehicle date change.
```
