Core Banking Services
  1. Account
Core Banking Services
  • Introduction
  • Terminologies
  • Webhooks
  • Authentication
  • Account
    • Product List
      GET
    • Create Account
      POST
    • Find Client
      POST
    • Accounts
      GET
    • Create Additional Account
      POST
    • Account Details By BVN
      GET
    • Get Client Addresses
      GET
    • Get Account Details
      GET
    • Get Account Summary
      GET
    • Client Images
      GET
    • Update BVN
      POST
    • Update Transaction Limit
      POST
  • KYC
    • Get KYC Info
      POST
    • Update KYC
      POST
  • Transaction
    • Payment Types
      GET
    • Debit Account
      POST
    • Credit Account
      POST
    • Transaction History
      GET
    • Transaction Details
      GET
  • Transfer
    • Get Institutions
      GET
    • Name Inquiry
      POST
    • Interbank Transfer
      POST
    • InterBank Transfer Query
      GET
    • Transfer Details
      GET
    • IntraBank Transfer
      POST
    • Intrabank Transfer To Virtual Accounts
      POST
  • Reporting
    • Report Types
    • Get Report Parameters
    • Create Report
    • Report Details
    • Get Reports
  1. Account

Get Client Addresses

GET
/core/account/{clientId}/addresses
This API retrieves the addresses of a registered client. It requires a request body containing either email or mobileNo to fetch the relevant address details.

Request#

Field NameTypeRequiredDescription
emailstringtrueClient's email address
mobileNostringtrueClient's mobile phone number

Request

Path Params

Body Params application/json

Example
{
    "email": "mohdolateju@gmail.com",
    "mobileNo": "08096856441"
}

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/core/account//addresses' \
--header 'Content-Type: application/json' \
--data-raw '{
    "email": "mohdolateju@gmail.com",
    "mobileNo": "08096856441"
}'

Responses

🟢200Success
application/json
Body

Example
[
    {
        "clientID": 27860,
        "updatedBy": "",
        "city": "Abuja",
        "countyDistrict": "",
        "addressType": "Home Address",
        "postalCode": "9210",
        "latitude": 0,
        "townVillage": "",
        "updatedOn": [
            2024,
            10,
            14
        ],
        "isActive": true,
        "createdOn": [
            2024,
            10,
            14
        ],
        "countryId": 28,
        "addressId": 1,
        "addressTypeId": 81,
        "stateName": "Adamawa",
        "createdBy": "",
        "street": "",
        "addressLine1": "Hi",
        "addressLine2": "Hi2",
        "addressLine3": "hi3",
        "stateProvinceId": 45,
        "countryName": "Nigeria",
        "longitude": 0
    }
]
Modified at 2025-03-19 15:01:50
Previous
Account Details By BVN
Next
Get Account Details
Built with