合作方账户余额查询
基础信息
- 请求方式:POST
- 接口地址:/api/mastercard/queryPartnerAccount.html
请求参数
名称 | 类型 | 必选 | Base64 转译 | 字段名 | 说明 |
---|---|---|---|---|---|
randomStr | string | true | none | Randomstr | none |
请求示例
{
"randomStr": "abcdef1234567890"
}
响应参数
名称 | 类型 | 描述 |
---|---|---|
name | string | 账户名称 |
accountList | List | |
└currency | string | 币种 |
└balance | integer | 余额 |
└digital | integer | 余额精度 |
响应示例
{
"name": "string",
"accountList": [
{
"currency": "string",
"balance": 0,
"digital": 0
}
]
}
Updated 4 months ago