Verification of transaction status

To get the transaction status, it is possible to query by project_id, the status information is stored in the result.transaction_status.code field.

Request to receive the transaction status

GET https://prapi.tarlanpayments.kz/transaction/api/v1/system/transaction/status

Query Parameters

NameTypeDescription

project_reference_id*

String

Order number on the project side

merchant_id*

Integer

Merchant ID assigned by the payment system

project_id*

Integer

Project ID assigned by the payment system

type*

String

Type of transaction

Headers

NameTypeDescription

Authorization*

String

Bearer Auto-rotation hash (see Signature Creating)

{
    "status": false,
    "status_code": 5103,
    "message": "transaction not found",
    "result": {}
}
curl --location 'https://prapi.tarlanpayments.kz/transaction/api/v1/system/transaction/status?merchant_id=1&project_id=42&project_reference_id=sanch92116&type=in' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer sign'

Last updated