Quote PDF
This GET endpoint allows you to download the PDF document for a specific client quote. The response body is a base64-encoded string representing the PDF document. Decode it to obtain the binary PDF file, or use it directly in a data URI (e.g., 'data:application/pdf;base64,<encoded_string>'). The response's Content-Type header is text/plain — the PDF media type is exposed separately via an Original-Content-Type: application/pdf header, not the standard Content-Type.
/api/v2/quotes/:id/pdfRequest
Response
Requires the quotes route permission
This endpoint requires an API key with the quotes route permission. See
Route permissions on the
Authentication page.
Quote Not Found (404)
Returned when id doesn't match a quote for your company. The body is the two-character JSON string "" (an empty string) with Content-Type: application/json — not a zero-length body, and not an error object.