List Deposit Gateways
Retrieve the full list of payment gateways enabled for your merchant account.
Endpoint
GET /public/api/v2/gateway/gateways
Note: This is a public endpoint—no authentication required.
Sandbox Example
curl -X GET "https://sandbox.awdpay.com/test/public/api/v2/gateway/gateways"
Response
[
{
"name": "wave-senegal",
"provider": "Wave",
"allowedCountries": ["SN"],
"allowedCurrencies": ["XOF"],
"type": "REDIRECT"
},
{
"name": "orange-money-ci",
"provider": "Orange Money",
"allowedCountries": ["CI"],
"allowedCurrencies": ["XOF"],
"type": "OTP"
},
{
"name": "mtn-ci",
"provider": "MTN",
"allowedCountries": ["CI"],
"allowedCurrencies": ["XOF"],
"type": "DIRECT"
}
]
Response Fields
| Field | Type | Description |
|---|---|---|
name | string | Gateway identifier used in deposit requests |
allowedCountries | array | ISO country codes where this gateway operates |
allowedCurrencies | array | Supported currency codes |
type | string | Integration type: DIRECT, REDIRECT, or OTP |