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"
}
FieldRequiredData TypeDescription
receivingCountrytrueStringLength: 2, Country ISO code i.e US.
receivingCurtrueStringLength: 3, Country ISO code i.e USD.
receivingCategorytrueString"id" value of response from Category i.e BANK.

👍

Response

{
    "status": true,
    "content": {
        "data": [
            {
                "text": "International",
                "id": "international"
            },
            {
                "text": "Domestic",
                "id": "local"
            }
        ]
    }
}