Credit Payment Plan
This API allows you to get credit payment plan.
Parameters
Name | Type | Description |
bsmv |
string | Banking and Insurance Transactions Tax Amount. (Required) |
interest |
string | Interest rate. (Required) |
kkdf |
string | Resource Utilization Support Fund. (Required) |
loanStartDate |
string | The date of the first payment.In the format yyyy-MM-dd. (Required) |
loanUsingDate |
string | The date of loan funds are received.In the format yyyy-MM-dd. (Required) |
loanAmount |
string | The amount of the loan. (Required) |
expenseAmount |
string | The amount of the expense. (Required) |
term |
string | Term in months. (Required) |
Data Returned
Data is returned as JSON as specified by the dataFormat parameter.
Regardless of format, the data contains the following fields:
Name | Type | Description |
principal |
string | The amount of principal. |
monthlyRediscount |
string | The amount of rediscount monthly. |
bitt |
string | Banking and Insurance Transactions Tax Amount. |
interest |
string | The amount of interest. |
remainingPrincipal |
string | The amount of remaining principal. |
kkdf |
string | Resource Utilization Support Fund. |
period |
string | Number of period |
monthlyPayment |
string | Installment amount. |
date |
string | Loan payment date. In the format yyyy-MM-dd. |
Examples
Request:
{
"bsmv": 0.1234,
"interest": 1.25,
"kkdf": 0.1034,
"loanStartDate": 2015-11-10,
"loanUsingDate ": 2015-11-10,
"loanAmount": 5000,
"expenseAmount": 10,
"term":36
}
Response:
{
"returnCode": "API-00000",
"returnMsg": "İşlem başarıyla gerçekleşmiştir.",
"data": {
"paymentPlanList": [
{
"principal": "0",
"monthlyRediscount": "0.10043",
"bitt": "0",
"interest": "0",
"remainingPrincipal": "1000",
"kkdf": "0",
"period": "0",
"monthlyPayment": "0",
"date": "2016-02-02"
},
{
"principal": "99.95481482064122",
"monthlyRediscount": "0.09039153794756301",
"bitt": "0.00013000000000000376",
"interest": "0.10000000000000289",
"remainingPrincipal": "900.0451851793588",
"kkdf": "0.0003000000000000087",
"period": "1",
"monthlyPayment": "100.05524482064122",
"date": "2016-03-02"
}
]
}
}
-
API URL : https://apigate.akbank.com/api/mock
-
-
-