GetDataSource
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 |
─channelCode | string | YES | 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 number | V2.0.0 |
code | integer | YES | Response code 1 : Success | 1 |
message | string | YES | Message info | success |
data | JSONarray | |||
─Source Of Fund | object | Source Of Fund | ||
──1 | string | YES | key - value | Bank Deposi |
──2 | string | YES | key - value | Grant from family or friends |
─ID Type | object | ID Type | ||
──1 | string | YES | key - value | national |
──2 | string | YES | key - value | passport |
─Purpose Of Remittance | object | Purpose Of Remittance | ||
──1 | string | YES | key - value | Family/living expense |
──2 | string | YES | key - value | Payment for services |
─Beneficiary RelationShip | object | Beneficiary RelationShip | ||
──1 | string | YES | key - value | OTHERS |
──3 | string | YES | key - value | FAMILY MEMBER |
Parameter example
curl --location --request POST 'http://29597375fx.epaydev.xyz/capi/openapi/payoutApi/getCatalogue' \
--header 'Content-Type: application/json' \
--data-raw '{
"param": {
"param": {
"epayAccount": "test2020@epay.com",
"channelCode": "69",
"version": "V2.0.0"
},
"sign": "{{sign}}"
}'
RequestExample
curl --location --request POST 'http://29597375fx.epaydev.xyz/capi/openapi/payoutApi/getCatalogue' \
--header 'Content-Type: application/json' \
--data-raw '{
"param": {
"param": {
"epayAccount": "test2020@epay.com",
"channelCode": "69",
"version": "V2.0.0"
},
"sign": "{{sign}}"
}'
ResponseExample
{
"sign": "",
"epayAccount": "test2020@epay.com",
"version": "V2.0.0",
"code": 1,
"message": "success",
"data": {
"Source Of Fund": {
"1": "Bank Deposi",
"2": "Grant from family or friends",
"3": "Redemption of Investment products",
"4": "Allowance for family maintenance",
"5": "Loan",
"6": "Salary",
"7": "Real estate"
},
"ID Type": {
"1": "national",
"2": "passport"
},
"Purpose Of Remittance": {
"1": "Family/living expense",
"2": "Payment for services",
"13": "Travel expenses"
}
}
}