Skip to content

Get Fiscal Receipt API

Retrieves fiscal receipt data from the fiscal system.
Endpoint

Method: GET
URL: BASE_URL/merchant/fiscalization/status/
Header:

http
Authorization: Bearer <ACCESS_TOKEN>

Request Parameters

ParameterTypeRequiredLocationDescription
api-keystringYesHeaderAPI authentication key.
transactionIdstring (UUID)NoQueryUnique identifier for the transaction.
externalIdstringNoQueryUnique identifier for the fiscal receipt used in Cash Payment registration.
refundedbooleanNoQueryFilter fiscal receipts based on refund status.

💡 Note: Either transactionId or externalId must be provided.


Example Request

plaintext
GET {BASE_URL}/merchant/fiscalization/status/?refunded=false&transactionId=e2da46c6-8c89-400e-8bd9-037297b2e8b1

Response example

json
{
  "result": {
    "success": true,
    "isRefund": false,
    "receiptUrl": "https://ofd.soliq.uz/epi?t=EP000000000001&r=001&c=20060102000000&s=000000000001",
    "terminalId": "EP000000000378",
    "receiptId": 173723,
    "fiscalSign": "947030008479"
  }
}