Partner Account Balance Inquiry
POST Partner Account Balance Inquiry
POST /api/mastercard/queryPartnerAccount.html
Inquire about the balance of a partner account.
Request Body
{
"randomStr": "abcdef1234567890"
}
Request Parameters
| Name | Type | Required | Base64 Encoding | Field Name | Description |
|---|---|---|---|---|---|
| randomStr | string | true | none | Random string | none |
Example Response
200 Response
{
"name": "string",
"accountList": [
{
"currency": "string",
"balance": 0,
"digital": 0
}
]
}
Response Fields
| Name | Type | Required | Constraints | Field Name | Description |
|---|---|---|---|---|---|
| name | string | true | none | Account name | none |
| accountList | array | true | none | Account list | |
| currency | string | true | none | Currency | none |
| balance | integer | true | none | Balance | none |
| digital | integer | true | none | Balance precision | none |
Updated 11 months ago