Limit
Parameter description
Request
| name | type | required | desc | example |
|---|---|---|---|---|
| param | JSONObject | YES | ||
| ─epayAccount | string | YES | Merchant Epay Account | test2020@epay.com |
| ─version | string | YES | Version number | V2.0.0 |
| ─currency | string | YES | Currency | AUD |
| ─category | string | YES | BANK or CASH | BANK |
| ─type | string | NO | RECEIVE or PAYMENT | |
| ─channelCode | string | NO | Channel code | 46 |
| sign | string | YES | Signature |
Response
| name | type | required | desc | example |
|---|---|---|---|---|
| sign | string | YES | Signature | |
| epayAccount | string | YES | Merchant Epay Account | test2020@epay.com |
| version | string | YES | Version | V2.0.0 |
| code | integer | YES | Response code 1: Success | 1:Success |
| message | string | YES | Message info | success |
| data | JSONObject | YES | ||
| ─singleMin | string | YES | Minimum | 0 |
| ─singleMax | string | YES | Maximum | 9999999 |
Parameter example
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"
}
}