Skip to content
BolderBolder API
Esc
navigateopen⌘Jpreview

Get an order document

GET/orders/{order_id}/documents/{id}
Authorization
AuthorizationBearer token (JWT) · headerrequired
Path parameters
order_idstringrequired
idintegerrequired
Responses
200Document
idinteger
document_typestring
Allowed:invoicereceipt
document_numberstring
file_urlstring
Request
curl -X GET "https://api.onbolder.com/v2/orders/string/documents/0" \
  -H "Authorization: Bearer YOUR_TOKEN"
Response
{
  "id": 0,
  "document_type": "invoice",
  "document_number": "string",
  "file_url": "string"
}