获取限额
参数说明
Request
| name | type | required | desc | example |
|---|---|---|---|---|
| param | JSONObject | YES | 参数 | |
| ─epayAccount | string | YES | 您的EPAY账号 | test2020@epay.com |
| ─version | string | YES | 版本号 | V2.0.0 |
| ─currency | string | YES | 币种 | AUD |
| ─category | string | YES | 银行BANK,现金CASH | BANK |
| ─type | string | NO | 代收RECEIVE,代付PAYMENT,见payType 说明 | 这里只传PAYMENT |
| ─channelCode | string | NO | 渠道编号 | 46 |
| sign | string | YES | 签名 |
Response
| name | type | required | desc | example |
|---|---|---|---|---|
| sign | string | YES | 签名 | |
| epayAccount | string | YES | 您的EPAY账号 | test2020@epay.com |
| version | string | YES | 版本号 | V2.0.0 |
| code | integer | YES | 状态码 | 1:成功 |
| message | string | YES | 提示 | success |
| data | JSONObject | YES | 数据 | |
| ─singleMin | string | YES | 最小值 | 0 |
| ─singleMax | string | YES | 最大值 | 9999999 |
参数示例
curl --location --request POST 'http://29597375fx.epaydev.xyz/capi/openapi/payoutApi/getLimit' \
--header 'Content-Type: application/json' \
--data-raw '{
"param": {
"epayAccount": "test2020@epay.com",
"category": "BANK",
"currency": "AUD",
"version": "V2.0.0"
},
"sign": "{{sign}}"
}'
RequestExample
curl --location --request POST 'http://29597375fx.epaydev.xyz/capi/openapi/payoutApi/getLimit' \
--header 'Content-Type: application/json' \
--data-raw '{
"param": {
"epayAccount": "test2020@epay.com",
"category": "BANK",
"currency": "AUD",
"version": "V2.0.0"
},
"sign": "{{sign}}"
}'
ResponseExample
{
"sign": "",
"epayAccount": "test2020@epay.com",
"version": "V2.0.0",
"code": 1,
"message": "success",
"data": {
"singleMin": "0",
"singleMax": "9999999"
}
}