Skip to content
BolderBolder API
Esc
navigateopen⌘Jpreview

List order documents

GET/orders/{order_id}/documents
Authorization
AuthorizationBearer token (JWT) · headerrequired
Path parameters
order_idstringrequired
Responses
200Documents list
_embeddedobject
Show properties
itemsOrderDocument[]
Show properties
Array of OrderDocument
idinteger
document_typestring
Allowed:invoicereceipt
document_numberstring
file_urlstring
Request
curl -X GET "https://api.onbolder.com/v2/orders/string/documents" \
  -H "Authorization: Bearer YOUR_TOKEN"
Response
{
  "_embedded": {
    "items": [
      {
        "id": 0,
        "document_type": "invoice",
        "document_number": "string",
        "file_url": "string"
      }
    ]
  }
}