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
API Key
Bearer <token>
API Secret
Bearer <token>
Body
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
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:
Example Response:
Last updated