Skip to main content

List Withdraw Gateways

Retrieve the full list of withdrawal gateways enabled for your merchant account.

Endpoint

GET /public/gateways/withdraw/list

Note: This is a public endpoint—no authentication required.

Sandbox Example

curl -X GET "https://pay.awdpay.pro/test/public/gateways/withdraw/list"

Response

[
{
"name": "wave-senegal",
"allowedCountries": ["SN"],
"allowedCurrencies": ["XOF"],
"type": "DIRECT"
},
{
"name": "orange-money-ci",
"allowedCountries": ["CI"],
"allowedCurrencies": ["XOF"],
"type": "MANUAL"
},
{
"name": "mtn-ci",
"allowedCountries": ["CI"],
"allowedCurrencies": ["XOF"],
"type": "SCHEDULED"
}
]

Response Fields

FieldTypeDescription
namestringGateway identifier used in withdrawal requests
allowedCountriesarrayISO country codes where this gateway operates
allowedCurrenciesarraySupported currency codes
typestringWithdrawal type: DIRECT, MANUAL, or SCHEDULED

Withdrawal Types

TypeDescription
DIRECTFunds are transferred immediately to the beneficiary
MANUALRequires manual approval or intervention before processing
SCHEDULEDWithdrawal is queued and processed at scheduled intervals

Next Steps