Content-Type: application/json
Request Parameters#
| Field Name | Type | Description | Required | Example |
|---|
| order_no | String | Merchant order number | Yes | TX10000000000001 |
| trade_no | String | Platform transaction number | No | PI10000000000001 |
{
"order_no": "TX10000000000001",
"trade_no": "PI10000000000001"
}
Response Parameter Description#
| Field Name | Type | Description | Required | Example |
|---|
| code | int | Response status code 200: request successful, otherwise refer to response status description | Yes | 200 |
| msg | String | Description | Yes | SUCCESS |
| data | object | Success data | Yes | Contains the following data |
| trade_no | String | Platform transaction number | Yes | PO0000000000001 |
| order_no | String | Merchant order number | Yes | TX10000000000001 |
| status | String | Order status: PROCESSING-processing , SUCCEEDED-success, FAILED-failed ,EXPIRED-timeout ,REVERSAL-reversal | Yes | PROCESSING |
| amount | number | Order amount | Yes | 1000.00 |
| currency | String | Currency | Yes | INR |
| fee | number | Fee | Yes | 20.00 |
| complete_at | Long | Order completion time, unix timestamp: milliseconds | No | 1767315722000 |
| remark | String | Transaction remark | No | |
| payee_name | String | Payee name | No | |
| notify_url | String | Callback URL | Yes | |
| user_ip | String | User IP | Yes | |
| payment_method | String | Payment method code, please refer to payment method list | Yes | |
| expires_at | Long | Order expiration time, unix timestamp: seconds | Yes | 3600 |
| create_at | Long | Creation time, unix timestamp: milliseconds | Yes | 1767315722000 |
| protocol | String | Cryptocurrency transaction protocol (chain/network, e.g. TRC20, ERC20, BTC) | No | |
| hash | String | Cryptocurrency transaction hash | No | |
| tag | String | Crypto wallet address tag (required for some cryptocurrencies) | No | |
| utr | String | India UPI, bank transfer UTR | No | |
Response Example - Query Success{
"code": 200,
"msg": "BIZ_OPERATION_SUCCESS",
"data": {
"trade_no": "PO2008652201295216703",
"order_no": "Payout-004364565402",
"status": "FAILED",
"amount": "12000",
"currency": "IDR",
"fee":20.00,
"complete_at":12435646344365464,
"remark":"",
"payee_name":"Jean",
"notify_url":"",
"user_ip": "151.67.72.12",
"payment_method":"UPI_QR",
"expires_at": 1767315722,
"create_at": 1767734979000,
"protocol": "TRC20",
"hash":"2342342dsfdfwe23242"
"tag":"",
"utr":""
}
}
Response Example - Failure{
"code": 3001,
"msg": "Order not found",
"data": null
}
Modified at 2026-05-29 13:29:16