📘
Integration Documentation
  • Getting Started
  • Authentication
  • Webhook
  • Customer
  • Loan
  • Wallet
  • Advancly Embed Integration (Widget)
  • Integration Overview
  • Aggregator/Lender API Integration
    • Authentication and Authorisation
    • Borrower Onboarding and Loan Application
    • Wallet
  • Aggregator Investment API
    • Aggregator Authentication and Authorisation
    • Aggregator Investment
  • Advancly Direct
  • Single and Bulk Loan Request
Powered by GitBook
On this page

Was this helpful?

  1. Aggregator/Lender API Integration

Wallet

This endpoint allows the user to search for account details by email.

Get account details by email

GET {{baseUrl}}/api/v1/wallet/accounts_by_email

Query Parameters

Name
Type
Description

CustomerType*

string

user can enter either "Customer" or "Aggregator" as the value

Email*

string

Currency

string

values accepted are "NGN' or "USD"

{
    "data": [
        {
            "id": 2,
            "targetId": 44,
            "bankName": "Wema",
            "currency": "NGN",
            "accountNumber": "1020156332",
            "acountName": "John Doe",
            "consumerType": "Aggregator",
            "IsDefault": true
        }
    ],
    "Message": "",
    "Status": true,
    "StatusCode": 200
}
{
    Message = "User does not exist",
    Status = false,
    StatusCode = 401
}
{
    Message = "Aggregator does not exist",
    Status = false,
    StatusCode = 404
}
PreviousBorrower Onboarding and Loan ApplicationNextAggregator Investment API

Last updated 2 years ago

Was this helpful?