v2

latestOpenAPI 3.0.02026-08-08112115411.4 KB
Quotes

Get a quote

Get a single quote by the ID provided.

get/quotes/{id}

Path parameters

idstring required

Quote ID

Response

Quote

Example response

{
  "quotes": [
    {
      "id": "123-quotes",
      "type": "quotes",
      "number": "1000-01",
      "displayStatus": "SENT",
      "total": {
        "amount": "5000.00",
        "currency": "USD",
        "formatted": "$5,000.00"
      },
      "productLineItems": [
        {
          "id": "1-quoteProductLineItems",
          "position": 0,
          "product": "100-products",
          "name": "Consulting Services",
          "description": "Monthly consulting retainer",
          "sku": "CONS-001",
          "quantity": 2,
          "term": null,
          "price": {
            "amount": "2500.00",
            "currency": "USD",
            "formatted": "$2,500.00"
          },
          "total": {
            "amount": "5000.00",
            "currency": "USD",
            "formatted": "$5,000.00"
          },
          "discountUnit": null,
          "discountNumber": null
        }
      ],
      "subtotalLineItems": [
        {
          "id": "1-quoteSubtotalLineItems",
          "position": 0,
          "label": "Discount",
          "modifierUnit": "%",
          "modifierValue": 10,
          "operation": "-",
          "total": {
            "amount": "500.00",
            "currency": "USD",
            "formatted": "$500.00"
          }
        }
      ],
      "recipient": {
        "id": "321-contacts",
        "name": "Jane Doe",
        "email": "jane@example.com"
      },
      "validThroughTime": "2024-12-31T23:59:59Z",
      "createdTime": "2024-01-15T10:30:00Z",
      "publishedTime": "2024-01-16T14:20:00Z",
      "sentTime": "2024-01-17T09:15:00Z",
      "acceptedTime": null,
      "acceptedName": null,
      "acceptedEmail": null,
      "deletedTime": null,
      "links": {
        "lead": "456-leads"
      }
    }
  ]
}