v1

latestOpenAPI 3.1.02026-07-2656258207.2 KB
Banks

Bank Account Look Up

Resolve your customer's bank account information

post/banks/account-resolve

Headers

X-Trace-Idstring

A unique identifier to track this operation. It must be between 12 and 255 characters in length.

X-Scenario-Keystring

An optional scenario key that can be used to simulate specific behaviors or test different scenarios within the API. Providing this header allows you to trigger predefined responses or alter data based on the key's value, which can be useful for testing, development, or demonstrating specific functionalities. The key should be a string of 1 to 1000 characters.

Request body

OR
OR

Example request

{
  "currency": "NGN",
  "account": {
    "code": "044",
    "number": "0690000040"
  }
}

Response

OK

status'success' | 'failed'
messagestring

Example response

{
  "data": {
    "bank_code": "044",
    "account_number": "0690000040",
    "account_name": "Alex James"
  }
}