Skip to content

Balance Query

Request

MethodURL
POST/api/pay/merchant/balance

Request Headers

HeaderDescription
timestampRequest timestamp
nonceRandom value
countryIN
app_codeApplication code

Request Parameters

FieldTypeRequiredMax LengthDescription
signStringYesSignature

Request Example

{
"sign": "YOUR_SIGN"
}

Response Parameters

FieldTypeRequiredDescription
totalAmountStringYesTotal balance
frozenAmountStringYesFrozen amount
availAmountStringYesAvailable balance

Response Example

{
"code": 200,
"data": {
"totalAmount": "12000.00",
"frozenAmount": "2000.00",
"availAmount": "10000.00"
},
"msg": "success",
"traceId": "0801113131dd4951a36d19022a31b303.94.17423567008990449"
}

Error Codes

CodeMessageResolution
412Please try again laterRetry later
414*Correct the corresponding parameter
416Application not foundInvalid app_code, please update
417Merchant account not foundMerchant account not found, contact us
500Business ErrorContact us

Error Response Example

{
"code": 416,
"data": null,
"msg": "Application not found",
"traceId": "0801113131dd4951a36d19022a31b303.94.17423567008990449"
}