GET
/
quotes
{quote_id}
curl --request GET \
  --url https://kq5jp7qj7wdqklhsxmovkzn4l40obksv.lambda-url.eu-central-1.on.aws/quotes{quote_id} \
  --header 'Authorization: Bearer <token>'
{
  "created_at": "<string>",
  "currency": "<string>",
  "discount": 123,
  "id": "<string>",
  "line_items": [
    {
      "description": "<string>",
      "quantity": 123,
      "total": 123,
      "unit_price": 123
    }
  ],
  "notes": "<string>",
  "organization_id": "<string>",
  "organization_name": "<string>",
  "quote_number": "<string>",
  "status": "<string>",
  "subtotal": 123,
  "tax": 123,
  "terms_and_conditions": "<string>",
  "total": 123,
  "valid_until": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

quote_id
string
required

Unique identifier of the quote to retrieve

Response

200
application/json

Successfully retrieved quote details

Complete quote details including pricing breakdown and terms

Contains all information needed to evaluate and make a decision on a quote, including itemized pricing and applicable terms.