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

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

# InitiateNegotiationModel

Details of a negotiation.

## 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:
    InitiateNegotiationModel:
      type: object
      properties:
        listingId:
          type: string
          description: The ID of the listing.
          example: "42220470"
        carrierId:
          type: string
          description: The ID of the Central Dispatch customer the shipper wants to move
            cars in the dispatch. If a shipper is making the offer this is
            required.
          format: uuid
          nullable: true
          example: 0ca91a43-fbee-4c05-9a6c-aa5c63888f5c
        amount:
          minimum: 0
          type: number
          description: The balance amount that will be due after the COD/COP payment is
            applied.
          format: double
          example: 300
        pickupDate:
          type: string
          description: The date the pick up is scheduled, in UTC/ISO 8601 format. Will
            default to the listing pick up date if not specified.
          format: date-time
          nullable: true
          example: 2025-09-27T00:00:00.000Z
        deliveryDate:
          type: string
          description: The desired delivery date of the listing, in UTC/ISO 8601 format.
            Will default to the listing delivery date if not specified.
          format: date-time
          nullable: true
          example: 2025-10-04T00:00:00.000Z
        marketplaceId:
          type: integer
          description: "The ID of the Central Dispatch Marketplace. There are three types
            of Marketplaces:\r

            \r

            - **Public**: The public Marketplace ID is `10000`.\r

            - **Test**: Test Marketplace IDs will be provided to you by Central
            Dispatch.\r

            - **Private**: Private Marketplace IDs will be provided to you by
            Central Dispatch, if necessary."
          format: int32
          example: 10000
        expirationDateTime:
          type: string
          description: The expiration date of the listing, in UTC/ISO 8601 format.
          format: date-time
          example: 2025-11-20T00:00:00.000Z
      description: Details of a negotiation.
```
