Installments Plan Quote

Use this server in order to quote an installment plan

Installments Plan Quote

POST https://api.stage.localpayment.com/api/installments-plans

Quote an installment plan for a credit card payment order

Headers

Request Body

{
    "installmentsToken": "b71a6973-ffdc-427b-b014-e03eb4462e82",
    "creationDate": "2022-03-29T23:53:52.7150456+00:00",
    "expirationDate": "2022-03-30T00:03:52.71509+00:00",
    "currency": "ARS",
    "amount": 2000.0,
    "installments": [
        {
            "installments": 2,
            "installmentAmount": 1100.0,
            "totalPaymentAmount": 2200.0,
            "financingFee": 200.0
        },
        {
            "installments": 3,
            "installmentAmount": 941.7187,
            "totalPaymentAmount": 2825.156,
            "financingFee": 825.156
        },
        {
            "installments": 6,
            "installmentAmount": 633.17334,
            "totalPaymentAmount": 3799.04,
            "financingFee": 1799.04
        }
    ]
}

Example: Installment request

The installmentsToken that brings the response will have a 10 minutes duration.

{
	"paymentMethod": {
		"code": "1000"
	},
	"country": "ARG",
	"currency": "ARS",
	"amount": 1000.00,
    "accountNumber": "032.032.00000002"
}

Last updated