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 Credit Products For a Financial Provider
  • Create a New Credit Product
  • Edit Existing Credit Product
  • Delete Existing Credit Product

Was this helpful?

  1. SERVICE APIS
  2. v1

Credit Products

Get Credit Products For a Financial Provider

GET https://ezloan.genify.ai/financial_provider/creditproducts/

Path Parameters

Name
Type
Description

financial_provider_id*

string

ID of the financial provider

{credit product details}
{"something went wrong"}

Create a New Credit Product

POST https://ezloan.genify.ai/financial_provider/creditproducts/

Path Parameters

Name
Type
Description

financial_provider_id*

string

ID of the financial provider.

Request Body

Name
Type
Description

Early_Payment_Interest*

number

Very_Late_Payment_Penalty*

number

Late_Payment_Penalty*

number

Interest_Rate*

number

Max_Repayment_Months*

integer

Min_Repayment_Months*

integer

Lower_Limit*

number

Upper_Limit*

number

Name*

string

credit product name

[
    "Credit Product testProduct_alex has been created",
    200
]
[{"property": "Name", "message": "Missing field"}]
"something went wrong, please try again"

Edit Existing Credit Product

PUT https://ezloan.genify.ai/financial_provider/creditproducts/{financial_prodider_id}/{credit_product_id}

Path Parameters

Name
Type
Description

financial_provider_id*

string

financial provide ID

credit_product_id*

string

credit product ID

{"Credit Product has been updated"}
{Credit Product is not found}
"something went wrong"

Delete Existing Credit Product

DELETE https://ezloan.genify.ai/financial_provider/creditproducts/{financial_prodider_id}/{credit_product_id}

Path Parameters

Name
Type
Description

financial_provider_id

string

credit_product_id

string

{"Credit Product has been deleted"}
{Credit Product is not found}
"something went wrong"
PreviousGet Due PaymentsNextCredit Applications

Last updated 2 years ago

Was this helpful?