Webhooks

NOTE: The webhook URL should respond with a 200 status-code once notified successfully.

EventType
Description

Loan Approval

When a loan application is approved

Loan Rejected

When a loan application was rejected

Invoice Approved

When an invoice discounting application is approved

Invoice Rejected

When an invoice discounting application is rejected

Loan Response Format

Copy

{
    "event": "loan.approved", // "loan.rejected",
    "data": {
        "amount": 3040,
        "status": "APPROVED", // "REJECTED",
        "reference: "salad-reference"
        "external_reference": "custom-reference"      
}

Invoice Response Format

Copy

{
    "event": "invoice.approved", // "invoice.rejected",
    "data": {
        "amount": 3040,
        "status": "APPROVED", // "REJECTED",
        "reference: "salad-reference"
        "external_reference": "custom-reference"      
}

Last updated