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

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

# AdjustOfferRequest

Details of an offer adjustment 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:
    AdjustOfferRequest:
      type: object
      properties:
        amount:
          minimum: 0
          type: number
          description: The updated amount for the offer.
          format: double
          example: 300
        pickupDate:
          type: string
          description: The offered date of the pick up, in UTC/ISO 8601 format.
          format: date-time
          nullable: true
          example: 2025-09-27T00:00:00.000Z
        deliveryDate:
          type: string
          description: The offered date of the delivery, in UTC/ISO 8601 format.
          format: date-time
          nullable: true
          example: 2025-10-04T00:00:00.000Z
        expirationDateTime:
          type: string
          description: The date the offer will expire, in UTC/ISO 8601 format.
          format: date-time
          example: 2025-11-20T00:00:00.000Z
      description: Details of an offer adjustment request.
```
