---
title: "CodResponse"
url: "https://stage-api-docs.centraldispatch.com/apis/stage-listing-api-2-0-0/versions/6459c118-c2b9-484e-816d-5657457559e4/schemas/CodResponse"
---

> Full API specification: https://stage-api-docs.centraldispatch.com/apis/stage-listing-api-2-0-0/versions/6459c118-c2b9-484e-816d-5657457559e4.md

# CodResponse

Details of cash on delivery or cash on pick up (COD/COP).

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: Listing API
  version: 2.0.0
servers:
  - url: https://marketplace-api.centraldispatch.com
    description: Production server
components:
  schemas:
    Currency:
      enum:
        - USD
      type: string
      description: The currency of the monetary field. This list is not exhaustive and
        additional values may be added at any time.
      default: USD
      example: USD
    CodResponse:
      type: object
      properties:
        amount:
          type: number
          description: The cash on delivery (COD) or cash on pick up (COP) amount due.
          format: double
          example: 200
        amountCurrency:
          $ref: "#/components/schemas/Currency"
        paymentMethod:
          enum:
            - CASH_CERTIFIED_FUNDS
            - CHECK
          type: string
          description: The method for the COD/COP payment. This list is not exhaustive and
            additional values may be added at any time.
          example: CASH_CERTIFIED_FUNDS
        paymentLocation:
          enum:
            - DELIVERY
            - PICKUP
          type: string
          description: The location that COD/COP payment is due. This list is not
            exhaustive and additional values may be added at any time.
          example: PICKUP
      description: Details of cash on delivery or cash on pick up (COD/COP).
```
