# Partner Account Balance Inquiry

### POST Partner Account Balance Inquiry

POST /api/mastercard/queryPartnerAccount.html

Inquire about the balance of a partner account.

> Request Body

```
```

```json
{
  "randomStr": "abcdef1234567890"
}
```

#### Request Parameters

| Name      | Type   | Required | Base64 Encoding | Field Name    | Description |
| --------- | ------ | -------- | --------------- | ------------- | ----------- |
| randomStr | string | true     | none            | Random string | none        |

> Example Response
>
> 200 Response

```
```

```json
{
    "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        |
