βž•LenderLink Lite API Integration guide

This guide outlines the specifications for integrating and utilizing the Consumer API, including authentication steps, token request flow, and data retrieval methods.

Authentication

Obtain a token via the Authentication procedure.

Request Borrower Data

Introduction

This endpoint facilitates the generation of a borrower's full data available by their phone number.

Borrower Data Request Flow

To obtain a Borrower data, follow the instructions below.

  • GET API URL

https://sandbox-app.lenderlink.ph/api/v1/person/lite
  • Authorization

Use the generated token as Bearer access token and include it into the request.

Token

eyJ0eXAiOiJKasd10sJhbGciOiJSUzI1NiJ9.eyJhdWQiOiI5YTc4MzVm...

  • Query Params

Parameter
Type
Mandatory
Description

requestId

String

Yes

Unique identification code generated by the client

cellphoneNumber

String

Yes

Borrower's phone number, the format is 639XXXXXXXXX.

email

String

No

Borrower's email address

idNumber

String

No

Borrower's ID document number. ID, Driver license, etc

  • Handling the Response

Upon successful validation, the server will return one of two responses:

1. No match:


{
    "requestId": "X123-AB45",
    "cellphoneNumber": "63XXXXXXXXXX",
    "matchFlag": "No hit",
    "data": []
}
                                
  1. Match - aggregated summary block is returned

{
    "requestId": "X123-AB45",
    "matchFlag": "Hit",
    "cellphoneNumber": "63XXXXXXXXXX",
    "data": {
        "msisdn": "63XXXXXXXXXX",
        "numApp": 1,
        "numAcc": 1,
        "wasDpd30Ever": 1,
        "wasDpd90Ever": 0,
        "wasDpd30Last3Months": 0,
        "wasDpd90Last3Months": 0,
        "wasDpd30LastYear": 0,
        "wasDpd90LastYear": 0
    }
}

Last updated