Skip to main content
POST
/
payment
/
anor_confirm
Fiscalization Anor payment
curl --request POST \
  --url https://api.fiscalbox.uz/payment/anor_confirm \
  --header 'Content-Type: application/json' \
  --data '
{
  "transaction_id": "a12fc00f-5af5-65b8-adf8-74bff44680ee",
  "qr_code": "https://ofd.soliq.uz/check?t=UZ170703100597&r=2421&c=20230104121801&s=514343190161"
}
'
{
  "data": {
    "message": "Fiscalization completed successfully",
    "error_code": 0,
    "payment_id": 123456,
    "transaction_id": "a12fc00f-5af5-65b8-adf8-74bff44680ee"
  },
  "error": null,
  "is_success": true
}

Overview

The Anor Fiscalization API is used to complete (fiscalize) a previously initiated Anor payment. This endpoint confirms the payment by attaching a fiscal receipt generated by Soliq (OFD).

Request Fields

FieldTypeRequiredDescription
transaction_idstringUnique transaction (payment) identifier received from Anor payment
qr_codestringURL of the fiscal receipt from Soliq (OFD)

Response Fields

✅ Success Response

FieldTypeDescription
dataobjectResponse payload
data.messagestringHuman-readable error message by provider
data.error_codeintegererror_code provided by Provider
data.payment_idintegerUnique payment identifier received from Anor payment
data.transaction_idstring | nullUnique transaction identifier received from Anor payment
errornullError object (always null on success)
is_successbooleanAlways true

🚫 Error Response

FieldTypeDescription
datanullNo data returned
errorobjectError details
error.codeintegerInternal validation or processing error code
error.messagestringHuman-readable error message
error.dataany | nullAdditional error details
is_successbooleanAlways false

Body

application/json
transaction_id
string
required

Unique transaction identifier received from Anor payment

Example:

"a12fc00f-5af5-65b8-adf8-74bff44680ee"

qr_code
string
required

URL of the fiscal receipt from Soliq (OFD)

Example:

"https://ofd.soliq.uz/check?t=UZ170703100597&r=2421&c=20230104121801&s=514343190161"

Response

Fiscalization processed (success or error)

data
object
error
string | null
is_success
boolean
Example:

true