Skip to main content

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

FieldTypeDescription
namestringGateway identifier used in deposit requests
allowedCountriesarrayISO country codes where this gateway operates
allowedCurrenciesarraySupported currency codes
typestringIntegration type: DIRECT, REDIRECT, or OTP

Next Steps