List the attachments of a quote

Each attachment comes with a SIGNED, short-lived download URL. Fetch the file when you receive it; do not store the URL — it expires. Unlike catalog images, which live in a public bucket, quote attachments are private.

GET
/v1/quotes/{quoteId}/attachments

Each attachment comes with a SIGNED, short-lived download URL. Fetch the file when you receive it; do not store the URL — it expires. Unlike catalog images, which live in a public bucket, quote attachments are private.

Authorization

AuthorizationBearer <token>

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

In: header

Path Parameters

quoteId*string

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/v1/quotes/string/attachments"
{  "data": [    {      "fileName": "string",      "id": "string",      "kind": "string",      "mimeType": "string",      "sizeBytes": 0,      "url": "string"    }  ]}