Skip to main content
GET
/
api
/
custom
/
transactions
/
tech-maxx
/
gateways
/
banks
Get supported bank list
curl --request GET \
  --url https://test.digitaltermination.com/api/custom/transactions/tech-maxx/gateways/banks \
  --header 'Authorization: Bearer <token>'
{
  "code": "200",
  "banks": [
    {
      "name": "Access bank",
      "code": "203948",
      "country": "GHA"
    },
    {
      "name": "Ecobank",
      "code": "198234",
      "country": "GHA"
    }
  ]
}

Step 1: Retrieve Supported Banks

Before initiating a bank credit transaction, you must first retrieve the list of supported banks.
This endpoint returns the available banks along with their respective codes, which are required in the next step when performing a credit to a bank account.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

A successful response with a list of supported banks

code
string
Example:

"200"

banks
object[]
Example:
[
{
"name": "Access bank",
"code": "203948",
"country": "GHA"
},
{
"name": "Ecobank",
"code": "198234",
"country": "GHA"
}
]