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

Was this helpful?

  1. SERVICE APIS
  2. v1
  3. Credit Decisioning Flow
  4. User Setup

Sign up

Sign Up

POST https://ezloan.genify.ai/api/v1.0/signup/

This endpoint allows you to register a new borrower.

Headers

Name
Type
Description

Content-Type

string

application/json

authorization*

string

API key obtained in authentication step.

user_name*

string

Username used to obtain API key in authentication step.

autofill

boolean

a flag that specifies whether to automate filling other required variables on the borrower when user sends only the phone number of the borrower. values: 0(default)/1

Request Body

Name
Type
Description

Phone_Number*

string

Phone Number of user.

"Phone_Number":{

"national":"01112233344"

}

Last_Name*

string

Last name of user.

First_Name*

string

First name of user.

National_ID_Number*

string

National ID of user.

Email*

string

Email of user.

{
    "UUID": "b41f2744-c5c1-11ec-bef6-0242ac140002"
}
{
    "error": "''First_Name'' field(s) is/are missing"
}
"borrower already exist"

PreviousUser SetupNextUpdate

Last updated 2 years ago

Was this helpful?