Loan Status WebHook

Webhook implementation for Repayment statuses

In order for partners to notify Fuap of status updates during workflows such as KYC, Loan Statuses, and Repayment statuses, Fuap will provide the API endpoint listed below. This endpoint will be used for all status updates.

Fuap KYC Repayment endpoint:

https://api-sandbox.fuap.ai/api/webhooks/status/{personal_loan, home_loan, credit_card}

Headers

Name
Value

API Key

Bearer <token>

API Secret

Bearer <token>

Body

Name
Type
Description

referenceID

string

LoanID

Event Type

string

Personal_Loan | Home_Loan | Credit_Card

status

string

PERSONAL_LOAN_CREATED | PERSONAL_LOAN_PENDING | PERSONAL_LOAN_MATCHED_LEAD | PERSONAL_LOAN_FAILED | PERSONAL_LOAN_FUNDED |

metadata

json

Response

{
    "message": "success"
}

Loan Status event types

CREATED

loan created

null

PENDING

loan application submitted

null

MATCHED

loan has matched providers

{"numberofpartners": string}

FAILED

loan could not match

{“failureReason”: string}

FUNDED

loan funded

null

Example Body:

{
 "referenceId": string,   (LoanID for loan product status & submissionId for KYC statuses)
 "eventType": string,    (Personal_Loan, Home_Loan, Credit_Card, KYC)
 "status": string,
 "metadata": json,
}

Example Response:

{
    "message": "success"
}

Last updated