Options (Payment Options)
Get Available Payment option for the chosen category
POST METHOD
Note
For country, ISO code of 2 characters is required
{{baseUrl}}/api/v2/payout/option
{
"receivingCur": "GBP",
"receivingCountry" : "GB",
"receivingCategory" : "BANK"
}
Field | Required | Data Type | Description |
---|---|---|---|
receivingCountry | true | String | Length: 2, Country ISO code i.e US. |
receivingCur | true | String | Length: 3, Country ISO code i.e USD. |
receivingCategory | true | String | "id" value of response from Category i.e BANK. |
Response
{
"status": true,
"content": {
"data": [
{
"text": "International",
"id": "international"
},
{
"text": "Domestic",
"id": "local"
}
]
}
}
Updated 11 months ago