---
title: "AcceptOfferRequest"
url: "https://stage-api-docs.centraldispatch.com/apis/stage-offer-api-1-0-0/versions/43981ece-e7be-4c4b-a45e-0f4da174a60c/schemas/AcceptOfferRequest"
---

> Full API specification: https://stage-api-docs.centraldispatch.com/apis/stage-offer-api-1-0-0/versions/43981ece-e7be-4c4b-a45e-0f4da174a60c.md

# AcceptOfferRequest

Details of an offer accept request.

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: Offer API
  version: 1.0.0
servers:
  - url: https://prod-offers-api.awscal2.manheim.com
    description: Production server
components:
  schemas:
    AcceptOfferRequest:
      required:
        - pickupDate
        - deliveryDate
      type: object
      properties:
        pickupDate:
          type: string
          description: The accepted date of the pick up, in UTC/ISO 8601 format.
          format: date-time
          example: 2025-09-27T00:00:00.000Z
        deliveryDate:
          type: string
          description: The accepted date of the delivery, in UTC/ISO 8601 format.
          format: date-time
          example: 2025-10-04T00:00:00.000Z
      description: Details of an offer accept request.
```
