Cash Installment Calculator

This API returns installment amount for cash installment transaction with credit card.

API Information

URL

/installmentCashCalculator

Method

POST

Version

1.0

Scope

public

Authorization Flow

Client Credentials


Input Information

Name Format Description Required/Optional

Term

Number Term Required

Amount

Decimal Amount Required


Output Information

Installment

Name Format Description

RepaymentAmount

Decimal Payback amount

InterestRate

Decimal Interest rate

InstallmentInfo

List< InstallmentInfo > Installment detailed list


InstallmentInfo

Name Format Description

InstallmentPeriod

Number Insatallment period

InstallmentAmount

Decimal Insatallment amount

InstallmentPrincipal

Decimal Installment principal

InstallmentInterest

Decimal Installment rate

KKDF

Decimal Recourse utilization support fund

BSMV

Decimal Banking and insurance transaction tax

ExpiryDate

yyyy-MM-ddTHH24:mm:ss Expiry date


Message Codes

Message Code Description

ACBH000130

Maximum amount should be {0}{1}.

ACBH000131

Minimum amount should be {0}{1}.

ACBH000132

Maximum term should be {0} months.

ACBH000133

Minimum term should be {0} months.

Example

Request:

{
    "Term": 3,
    "Amount": 2000
}

Response:

{
    "Header": {
        "StatusCode": "APIGW000000",
        "StatusDescription": "Completed",
        "ObjectID": "5d2ae7cb-4a3b-4968-8d3b-b0ae9419108f"
    },
    "Data": {
        "Installment": {
            "RepaymentAmount": "2097.73",
            "InterestRate": "2.02",
            "InstallmentInfo": [
                {
                    "KKDF": "6.06",
                    "ExpiryDate": "2020-08-14T00:00:00",
                    "InstallmentInterest": "40.4",
                    "InstallmentPrincipal": "650.77",
                    "BSMV": "2.02",
                    "InstallmentAmount": "699.25",
                    "InstallmentPeriod": "1"
                },
                {
                    "KKDF": "4.09",
                    "ExpiryDate": "2020-09-14T00:00:00",
                    "InstallmentInterest": "27.25",
                    "InstallmentPrincipal": "666.54",
                    "BSMV": "1.36",
                    "InstallmentAmount": "699.24",
                    "InstallmentPeriod": "2"
                },
                {
                    "KKDF": "2.07",
                    "ExpiryDate": "2020-10-14T00:00:00",
                    "InstallmentInterest": "13.79",
                    "InstallmentPrincipal": "682.69",
                    "BSMV": "0.69",
                    "InstallmentAmount": "699.24",
                    "InstallmentPeriod": "3"
                }
            ]
        }
    }
}