Repayment 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/repayment

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

REPAYMENT_CREATED | REPAYMENT_PENDING | REPAYMENT_RECEIVED | REPAYMENT_FAILED | REPAYMENT_MISSED | REPAYMENT_DELINQUENT

metadata

json

Response

{
    "message": "success"
}

Repayment event type statuses

CREATED

Repayment schedule created

null

FAILED

Repayment failed

{“failureReason”: string}

PENDING

Repayment pending

null

RECEIVED

Repayment completed

null

MISSED

Repayment missed due date

null

DELINQUENT

Repayment missed 90 days

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