---
title: "UpdateDispatchDatesVehicleDateChangeRequest"
url: "https://api-docs.centraldispatch.com/apis/fulfillment-api-1-0-0/versions/ed4f06d9-fab0-4a1d-a6a8-ce631f6542d0/schemas/UpdateDispatchDatesVehicleDateChangeRequest"
---

> Full API specification: https://api-docs.centraldispatch.com/apis/fulfillment-api-1-0-0/versions/ed4f06d9-fab0-4a1d-a6a8-ce631f6542d0.md

# UpdateDispatchDatesVehicleDateChangeRequest

Details of vehicle dates.

## 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:
    UpdateDispatchDatesVehicleDateChangeRequest:
      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.
          example: ESTIMATED_PICKUP
        dateValue:
          type: string
          description: The date, in UTC/ISO 8601 format.
          format: date-time
        dateChangeReasonId:
          type: string
          description: The ID of the date change reason. This value can be retrieved using
            the 'Get Date Change Reasons' endpoint. Required for carrier.
          format: uuid
        notes:
          type: string
          description: Additional information.
          nullable: true
          example: Shipper needs more time to prepare the vehicle.
      description: Details of vehicle dates.
```
