API Reference
Get Supported Countries [GET]

Get Supported Countries

https://sandboxapi.onbrails.com/api/v1/wallets/payout/supported-countries/ (opens in a new tab)

You can get the countries we support payout to and the required details to create a beneficiaries

Request

beneficiaries/Get Supported Countries [GET]
curl --request GET \
     --url https://sandboxapi.onbrails.com/api/v1/wallets/payout/supported-countries/ \
     --header 'Authorization: Bearer YOUR_SECRET_KEY' \
     --header 'accept: application/json'

Responses

🟢 200 - Result example
{
  "status": true,
  "message": "supported countries successfully retrieved",
  "data": [
      {
          "code": "NG",
          "name": "Nigeria",
          "flag": "🇳🇬",
          "dialCode": "234",
          "paymentMethods": [
              "NUBAN"
          ],
          "currencies": [
              "NGN"
          ]
      },
       {
          "code": "AU",
          "name": "Australia",
          "flag": "🇦🇺",
          "dialCode": "61",
          "paymentMethods": [
              "BSB"
          ],
          "currencies": [
              "AUD"
          ]
      },]
}