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
| Field | Type | Description |
|---|---|---|
name | string | Gateway identifier used in withdrawal requests |
allowedCountries | array | ISO country codes where this gateway operates |
allowedCurrencies | array | Supported currency codes |
type | string | Withdrawal type: DIRECT, MANUAL, or SCHEDULED |
Withdrawal Types
| Type | Description |
|---|---|
DIRECT | Funds are transferred immediately to the beneficiary |
MANUAL | Requires manual approval or intervention before processing |
SCHEDULED | Withdrawal is queued and processed at scheduled intervals |