EZloan APIs
  • Overview
  • authentication
    • API Key
  • SERVICE APIS
    • v1
      • Credit Decisioning Flow
        • User Setup
          • Sign up
          • Update
          • User access
        • Get Borrower Info
        • Upload Borrower Data
        • Check Data Collected
        • Link Extracted Data
        • Remove Linked Data
        • View Summary Variables
        • Get SMS Variables
        • Get Credit Score
        • Get Top Locations
      • Scoring Formula
      • Scoring Weights
      • Business Rules
      • Payments
        • Get Due Payments
      • Credit Products
      • Credit Applications
      • Financial Providers
      • Issue CSV [WIP]
      • Report Borrower
      • Template Extender
  • Error codes
    • HTTP Codes
Powered by GitBook
On this page
  • Get Due Payments By ID
  • Get Due Payment History

Was this helpful?

  1. SERVICE APIS
  2. v1
  3. Payments

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
        }
    }
}
"This api endpoint expects a financial_provider_id as input"
"This api endpoint expects a borrower_id as input"
"something went error, please try again"

PreviousPaymentsNextCredit Products

Last updated 2 years ago

Was this helpful?