Skip to main content
POST
/
payment
/
payme_confirm
Fiscalization Payme payment
curl --request POST \
  --url https://api.fiscalbox.uz/payment/payme_confirm \
  --header 'Content-Type: application/json' \
  --data '
{
  "payment_id": "696e0246c9a128176d5934d8",
  "qr_code": "https://ofd.soliq.uz/check?t=UZ170703100597&r=2421&c=20230104121801&s=514343190161"
}
'
{
  "data": {
    "id": 123,
    "result": {
      "receipt": {
        "_id": "696e0246c9a128176d5934d8",
        "create_time": 1768816711011,
        "pay_time": 1768816711555
      }
    },
    "error": null
  },
  "error": null,
  "is_success": true
}

Overview

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

Request Fields

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

Response Fields

✅ Success Response

FieldTypeDescription
dataobjectResponse payload
data.idintegerInternal fiscalization ID
data.result.receipt._idstringReceipt identifier
data.result.receipt.create_timeintegerReceipt creation timestamp (ms)
data.result.receipt.pay_timeintegerPayment timestamp (ms)
data.errorstring | nullError description (null on success)
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
payment_id
string
required

Unique order identifier received in the /payme/go response and provided by Payme.

Example:

"696e0246c9a128176d5934d8"

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
object
is_success
boolean
Example:

true