Skip to main content
POST
/
payment
/
click_confirm
Fiscalization Click payment
curl --request POST \
  --url https://fbox.ngrok.io/payment/click_confirm \
  --header 'Content-Type: application/json' \
  --data '
{
  "payment_id": "4710103925",
  "qr_code": "https://ofd.soliq.uz/check?t=UZ170703100597&r=2421&c=20230104121801&s=514343190161"
}
'
{
  "data": {
    "inn": null,
    "payment_id": null,
    "qr_code": null,
    "status": "successfully",
    "error": null
  },
  "error": null,
  "is_success": true
}

Overview

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

Request Fields

FieldTypeRequiredDescription
payment_idstringUnique payment identifier received from Click payment
qr_codestringURL of the fiscal receipt from Soliq (OFD)

Response Fields

✅ Success Response

FieldTypeDescription
dataobjectResponse payload
data.payment_idstring | nullPayment identifier
data.innstring | nullTaxpayer identification number (if available)
data.qr_codestring | nullFiscal receipt URL
data.statusstringFiscalization status (successfully, failed, etc.)
data.errorstring | nullError description (null on success)
errornullError object (always null on success)
is_successbooleanAlways true

🚫 Error Response

Note: Even if there is a validation error, the server returns HTTP status 200.
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
payment_id
string
required

Unique order identifier received in the /click/pass response and provided by Click.

Example:

"4710103925"

qr_code
string
required

Link to fiscalization transaction on Soliq

Example:

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

Response

Fiscalization successful

data
object
error
string | null
is_success
boolean
Example:

true