Update

Get Relevant IDs Mapping

GET https://ezloan.genify.ai/api/v1.0/update/

{
    "ID Mapping": {
        "Areas": {
            "15 May City": 2,
            "6th of October": 3,
            "Abbassia": 4,
            "Abu Rawash": 5
        },
        "Cars": {
            "Corolla": 1
        },
        "Jobs": {
            "Electrical Engineer": 3,
            "Software Engineer": 2,
        },
        "Languages": {
            "Arabic": 1,
            "English": 2,
        }
    }
}

Update

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

This endpoint allows you to update existing borrower.

Request Body

Name
Type
Description

Number_of_Children

integer

Number of children of current user.

Monthly_Debt

number

User's debt per month.

Income_Type

string

User's income type. (Self Employed, Retired, Private Sector Employee, Public Sector Employee, Business Owner)

Residence_Type

string

User's residence type.(Fully Owned, Family House, Old Law Rent, New Law Rent, Furnished Rent)

Area

integer

User's current location/area ID.

Reported_Monthly_Income

string

User's monthly income.

Education_Level

string

User's education level.(High School, Diploma, Bachelor's, Master's, Phd)

Number_of_Dependents

integer

User's number of dependents.

Language_ID

string

Mapped to different languages.

UUID*

string

UUID of the user that you want to update his/her data.

Job_ID

integer

User's job id.

Years_of_Experience

integer

user's number of year experience.

required only if Job_ID is sent.

Self_Employed

boolean

flag to show if the user is self employed or not.

value: 0 or 1.

Marital_Status

string

user's marital state.

Car_ID

integer

user's car id.

Months_at_Address

integer

duration of user's stay at the given address in months.

Is_Banked

boolean

flag to show if the user has a any bank account or not.

value: 0 or 1.

{
       "UUID":"111111-2222-333-4444-55555"
       "token": "ThisIsAMockToken"
}

Last updated

Was this helpful?