List the deliveries of a receipt
get/v1/receipt-deliveries
Scope fiscal:read
Every e-mail delivery of one fiscal document with status and attempt count.
Parameters
| Field | In | Type | Description |
|---|---|---|---|
fiscalDocumentIdrequired | query | uuid |
Example
curl -X GET "https://api.bokapos.rs/v1/receipt-deliveries?fiscalDocumentId=9f8e7d6c-5b4a-4321-8765-0fedcba98761" \
-H "Authorization: Bearer $BOKAPOS_TOKEN"Responses
| 200 OK | Deliveries in creation order (at most 100) |
|---|---|
| 422 Unprocessable Content | The command violates a Boka or fiscal ruleErrorCode |
{
"items": [
{
"id": "f6a7b8c9-d0e1-4f2a-9b3c-4d5e6f7a8b90",
"fiscalDocumentId": "9f8e7d6c-5b4a-4321-8765-0fedcba98761",
"channel": "EMAIL",
"recipient": "kupac@example.com",
"language": "sr-Latn",
"attachments": [
"a4"
],
"status": "DELIVERED",
"attempts": 1,
"failureCode": null,
"createdAt": "2026-09-01T08:15:40.000Z",
"deliveredAt": "2026-09-01T08:15:52.418Z",
"updatedAt": "2026-09-01T08:15:52.418Z"
}
]
}Response:
Field descriptions come from the OpenAPI contract; field names and values are identical in both languages.
| Field | Type | Description |
|---|---|---|
itemsrequired | array<ReceiptDelivery> | |
idrequired | uuid | |
fiscalDocumentIdrequired | uuid | |
channelrequired | const "EMAIL" | |
recipientrequired | string | |
languagerequired | ReceiptDeliveryLanguage | Language of the message; the receipt itself is the official journal rendered into the attached PDFs.
|
attachmentsrequired | ReceiptDeliveryAttachments | Returned in canonical order (a4, 80mm, 58mm, png). An empty list sends the link only.
|
statusrequired | string |
|
attemptsrequired | integer | >= 0 |
failureCoderequired | string| null (nullable) | |
createdAtrequired | date-time | |
deliveredAtrequired | date-time| null (nullable) | |
updatedAtrequired | date-time |