List quotes

Returns the organization's non-archived quotes, most recently updated first.

GET
/v1/quotes

Returns the organization's non-archived quotes, most recently updated first.

Authorization

AuthorizationBearer <token>

The organization API key, sent as Authorization: Bearer <key>.

In: header

Query Parameters

limit?integer

How many items to return. Maximum 100.

Range1 <= value <= 100
Default25
offset?|

How many items to skip from the beginning.

Range0 <= value
Default0
opportunityId?string
Length1 <= length
query?string

Matches against the title and destination.

Length1 <= length
status?string

Value in

  • "draft"
  • "published"
  • "disabled"

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/v1/quotes"
{  "data": [    {      "createdAt": "2019-08-24T14:15:22Z",      "currency": "string",      "customerId": "string",      "customerName": "string",      "destination": "string",      "firstOpenedAt": "2019-08-24T14:15:22Z",      "id": "string",      "lastOpenedAt": "2019-08-24T14:15:22Z",      "openCount": 0,      "opportunityId": "string",      "price": 0,      "publishedAt": "2019-08-24T14:15:22Z",      "status": "draft",      "title": "string",      "token": "string",      "updatedAt": "2019-08-24T14:15:22Z"    }  ],  "pagination": {    "limit": 0,    "offset": 0,    "total": 0  }}