Get Due Payments

Get Due Payments By ID

GET https://ezloan.genify.ai/credit_application/{borrower_id}/get_due_payments

This endpoint allows you to retrieve due payments for a borrower.

Path Parameters

Name
Type
Description

borrower_id*

integer

ID of borrower whose due_payments you want to get.

{
    "due_payments": [xx],
    "input": {borrower_id}
}

Get Due Payment History

GET https://ezloan.genify.ai/credit_application/due_payments_history/

Query Parameters

Name
Type
Description

UUID*

string

borrrower's UUID.

financial_provider_id*

integer

ID of the financial provider.

{
    "history": {
        "0": {
            "Due_Date": "2022-06-11 08:07:01",
            "Is_Paid": 0,
            "Total_Due_Payment": 46.9028,
            "Transaction_ID": 0
        },
        "1": {
            "Due_Date": "2022-07-11 08:07:01",
            "Is_Paid": 0,
            "Total_Due_Payment": 46.9028,
            "Transaction_ID": 0
        },
        "2": {
            "Due_Date": "2022-08-10 08:07:01",
            "Is_Paid": 0,
            "Total_Due_Payment": 46.9028,
            "Transaction_ID": 0
        },
        "3": {
            "Due_Date": "2022-09-09 08:07:01",
            "Is_Paid": 0,
            "Total_Due_Payment": 46.9028,
            "Transaction_ID": 0
        },
        "4": {
            "Due_Date": "2022-10-09 08:07:01",
            "Is_Paid": 0,
            "Total_Due_Payment": 46.9028,
            "Transaction_ID": 0
        },
        "5": {
            "Due_Date": "2022-11-08 08:07:01",
            "Is_Paid": 0,
            "Total_Due_Payment": 46.9028,
            "Transaction_ID": 0
        },
        "6": {
            "Due_Date": "2022-12-08 08:07:01",
            "Is_Paid": 0,
            "Total_Due_Payment": 46.9028,
            "Transaction_ID": 0
        },
        "7": {
            "Due_Date": "2023-01-07 08:07:01",
            "Is_Paid": 0,
            "Total_Due_Payment": 46.9028,
            "Transaction_ID": 0
        },
        "8": {
            "Due_Date": "2023-02-06 08:07:01",
            "Is_Paid": 0,
            "Total_Due_Payment": 46.9028,
            "Transaction_ID": 0
        },
        "9": {
            "Due_Date": "2023-03-08 08:07:01",
            "Is_Paid": 0,
            "Total_Due_Payment": 46.9028,
            "Transaction_ID": 0
        },
        "10": {
            "Due_Date": "2023-04-07 08:07:01",
            "Is_Paid": 0,
            "Total_Due_Payment": 46.9028,
            "Transaction_ID": 0
        },
        "11": {
            "Due_Date": "2023-05-07 08:07:01",
            "Is_Paid": 0,
            "Total_Due_Payment": 46.9028,
            "Transaction_ID": 0
        },
        "12": {
            "Due_Date": "2023-06-06 08:07:01",
            "Is_Paid": 0,
            "Total_Due_Payment": 46.9028,
            "Transaction_ID": 0
        }
    }
}

Last updated

Was this helpful?