Description
This API is used to loan applications.
Mortgage Loan Applications
This API is used to mortgage loan application.
How it Works
Sample Request
POST /api/isbank/v1/loan-applications/mortgage-loan-applications
Body:
{
"loan_type": 210300001,
"citizen_id": 17081712142,
"phone_number": {
"country_code": 90,
"number": 5421479632
},
"loan_limit": 100,
"loan_term": 5,
"interest_rate": 1,
"monthly_income": 100,
"is_insured": false,
"branch_code": 4299,
"birth_date": "1987-07-16"
}
Headers:
X-IBM-client-id: {YOUR_CLEINT_ID}
X-IBM-client-secret: {YOUR_CLEINT_SECRET}
Authorization: Bearer {access_token}
Content-Type: application/json
Sample Response
{
"data": [
"is_success": true,
"code": "API-MORTGAGE-LOAN-SUCCESS",
"description": "Ev Kredisi başvurunuz değerlendirmeye alınmıştır. Başvurunuzla ilgili sizinle iletişime geçilecektir.",
"guid": "84804462-a394-49b8-af03-f60e523d60a6"
]
}
Vehicle Loan Applications
This API is used to vehicle loan application.
How it Works
Sample Request
POST /api/isbank/v1/loan-applications/vehicle-loan-applications
Body:
{
"loan_type": 210020001,
"citizen_id": 17081712142,
"phone_number": {
"country_code": 90,
"number": 5421479632
},
"loan_limit": 100,
"loan_term": 5,
"interest_rate": 1,
"monthly_income": 100,
"is_insured": false,
"branch_code": 4299,
"birth_date": "1987-07-16"
}
Headers:
X-IBM-client-id: {YOUR_CLEINT_ID}
X-IBM-client-secret: {YOUR_CLEINT_SECRET}
Authorization: Bearer {access_token}
Content-Type: application/json
Sample Response
{
"data": [
"is_success": true,
"code": "API-VEHICLE-LOAN-SUCCESS",
"description": "0 Km Taşıt Kredisi başvurunuz değerlendirmeye alınmıştır. Başvurunuzla ilgili sizinle iletişime geçilecektir.",
"guid": "f53b17b7-6ec2-425b-8075-facfe4ca00b7"
]
}