Fiscal data
To obtain fiscal data, order must be either captured or approved without preauth = Y
parameter.
Parameters¶
Request parameters
POST https://pay.flitt.com/api/fiscal_data
Parameter name | Type | Description | Example |
---|---|---|---|
order_id |
string(1024) | mandatory | Order ID which is generated by merchant |
merchant_id |
integer(12) | mandatory | Merchant unique ID. Generated by Flitt during merchant registration |
signature |
string(40) | mandatory | Order signature. Required to verify merchant request consistency and authenticity. Signature generation algorithm please see at Signature generation for request and response and response |
Request eamples
curl -L 'https://pay.flitt.com/api/fiscal_data' \
-H 'Content-Type: application/json' \
-d '{
"request": {
"merchant_id": 1549901,
"order_id": "6120b190-2a39-4fde-acae-a9761e7e58bd",
"signature": "b8f84562d3e2a971aea7d173c6fb59084f414d23"
}
}'
Response examples
{
"response": {
"error": "Merchant account not found",
"response_status": "success"
}
}
{
"response": {
"order_id": "6120b190-2a39-4fde-acae-a9761e7e58bd",
"fiscalisation_data": {
"2079125283": {
"message": {
"ru": "Фискальные данные не найдены.",
"uz": "Fiskal ma`lumotlar topilmadi.",
"en": "Fiscal data not found."
},
"code": -31603
}
},
"response_status": "success"
}
}
{
"response": {
"order_id": "pgtest000-1_02",
"fiscalisation_data": {
"9002999267": {
"status_code": 0,
"message": "",
"terminal_id": "EZ000000000658",
"date": "",
"fiscal_sign": "",
"qr_code_url": "https://ofd.soliq.uz/epi?t=XXX&r=XXX&c=XXX&s=XXX",
"type": 0,
"receipt_id": 3340,
"external": true,
"processed_date": 1736320610322
}
},
"response_status": "success"
}
}