📘
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
  • aggregator authentication
  • aggregator authentication

Was this helpful?

  1. Aggregator Investment API

Aggregator Authentication and Authorisation

aggregator authentication

POST #{{BaseUrl}/api/v1/account/custom_login

Request Body

Name
Type
Description

password

string

email

string

aggregator authentication

POST #{{BaseUrl}/api/v1/account/custom_login

This endpoint is the entry point for aggregators. It returns a tokn which would be sent as an authorisation token header for subsequent api calls

Request Body

Name
Type
Description

password

string

the aggregator's password

email

string

the aggregator's email

{
    "email": "aggregator@aggregator.com",
    "token": "f63746d549b86d791b35503f6c4287e5da6ea8d9bfa00b9f90d11feab12a9a7e",
    "user_type": "aggregator",
    "first_name": "aggregator_first_name",
    "last_name": "aggregator_last_name",
    "biz_name": "aggregator_business_name",
    "roleTypes": [],
    "status_code": 200,
    "message": "Login Successful.",
    "ForceChangeOfPassword": false,
    "status": true,
}
{
    "message": "Invalid username or password ",
    "status": false,
    "status_code": 400
}
PreviousAggregator Investment APINextAggregator Investment

Last updated 3 years ago

Was this helpful?