GET
/
quotes
curl --request GET \
  --url https://kq5jp7qj7wdqklhsxmovkzn4l40obksv.lambda-url.eu-central-1.on.aws/quotes \
  --header 'Authorization: Bearer <token>'
{
  "quotes": [
    {
      "amount": 123,
      "created_at": "<string>",
      "currency": "<string>",
      "id": "<string>",
      "organization_id": "<string>",
      "quote_number": "<string>",
      "status": "<string>",
      "valid_until": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

limit
integer

Maximum number of items to return (default: 50)

offset
integer

Number of items to skip (default: 0)

leq(created_at)
string

Filter by created_at <= value

geq(created_at)
string

Filter by created_at >= value

lss(created_at)
string

Filter by created_at < value

gtr(created_at)
string

Filter by created_at > value

equ(created_at)
string

Filter by created_at = value

Response

200
application/json

Successfully retrieved quote list

List of quotes for the authenticated organization

Returns all quotes prepared for your organization, sorted by creation date (newest first).