GET
/
banking
/
v1
/
ng
/
bank_accounts
{
  "count": 123,
  "next": "http://api.example.org/accounts/?page=4",
  "previous": "http://api.example.org/accounts/?page=2",
  "results": [
    {
      "id": "<string>",
      "user": {
        "email": "jsmith@example.com",
        "first_name": "<string>",
        "last_name": "<string>",
        "username": "<string>",
        "created_at": "2023-11-07T05:31:56Z",
        "updated_at": "2023-11-07T05:31:56Z"
      },
      "has_set_pin": true,
      "account_name": "<string>",
      "account_number": "<string>",
      "classification": "NULL",
      "currency": {
        "id": "<string>",
        "name": "<string>",
        "code": "<string>",
        "symbol": "<string>"
      },
      "status": "NULL",
      "business_name": "<string>",
      "naira_balance": {},
      "reference": "<string>",
      "tracking_reference": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

api-key
string
header
required

Query Parameters

page
integer

A page number within the paginated result set.

page_size
integer

Number of results to return per page.

Response

200 - application/json
count
integer
Example:

123

next
string | null
Example:

"http://api.example.org/accounts/?page=4"

previous
string | null
Example:

"http://api.example.org/accounts/?page=2"

results
object[]