# Partner Top-up Account Information Inquiry

### POST Partner Top-up Account Information Inquiry

POST /api/mastercard/queryTopupAccount.html

Inquire about the information of partner top-up accounts.

> Request Body

```
```

```json
{
  "currency": "USDT (fixed value)",
  "randomStr": "abcdef1234567890"
}
```

#### Request Parameters

| Name      | Type   | Required | Base64 Encoding | Field Name    | Description           |
| --------- | ------ | -------- | --------------- | ------------- | --------------------- |
| currency  | string | false    | none            | Currency      | Currency: USDT or EUR |
| randomStr | string | true     | none            | Random string | Random string         |

> Example Response
>
> 200 Response

```
```

```json
{
    "accountList": [
      {
        "name": "string",
        "addressName": "string",
        "address": "string",
        "BIC": "string",
        "postscript": "string"
      }
    ]
}
```

#### Response Fields

| Name        | Type   | Required | Constraints | Field Name                            | Description |
| ----------- | ------ | -------- | ----------- | ------------------------------------- | ----------- |
| name        | string | true     | none        | Account name                          | none        |
| addressName | string | true     | none        | Chain name, bank name                 | none        |
| address     | string | true     | none        | Receiving address/bank account number | none        |
| BIC         | string | true     | none        | BIC                                   | none        |
| postscript  | string | true     | none        | Transfer postscript                   | none        |
