Appearance
Get Fiscal Receipt API
Retrieves fiscal receipt data from the fiscal system.
Old Endpoint (will be depreciated)
Method:
GET
URL: BASE_URL/merchant/getFiscalReceipt/
New endpoint
Method:
GET
URL: BASE_URL/merchant/fiscalization/status/
Request Parameters
| Parameter | Type | Required | Location | Description |
|---|---|---|---|---|
api-key | string | Yes | Header | API authentication key. |
transactionId | string (UUID) | No | Query | Unique identifier for the transaction. |
externalId | string | No | Query | Unique identifier for the fiscal receipt used in Cash Payment registration. |
refunded | boolean | No | Query | Filter fiscal receipts based on refund status. |
💡 Note: Either
transactionIdorexternalIdmust be provided.
Example Request
plaintext
GET {BASE_URL}/merchant/fiscalization/status/?refunded=false&transactionId=e2da46c6-8c89-400e-8bd9-037297b2e8b1Response example
json
{
"result": {
"success": true,
"isRefund": false,
"receiptUrl": "https://ofd.example.com",
"terminalId": "EP000000000378",
"receiptId": 173723,
"fiscalSign": "947030008479"
}
}