Skip to main content

Payment terms

POST /api/v2/payment-terms

Provides the LipaLater facility payment terms

The payment-terms object

Attributes

AttributeData typeRequiredDescription
item_valueintegertrueTotal value of item(s)

Curl Request

curl -i -X POST 'https://core-v2-multi-country.herokuapp.com/api/v2/payment-terms' \
-H 'Authorization: Bearer <access_token>' \
-H 'Content-Type: application/json' \
-d '{"item_value":"75000"}'

JSON Request Object

{
"item_value": "75000"
}

JSON Response

{
"status": 200,
"payment_terms": {
"principal_amount": "75000.00",
"upfront_fees": "3750.00",
"first_installment": "10000.00",
"minimum_payment": "6250.00"
}
}