v1
latestOpenAPI 3.1.0Copyright Pismo2026-07-247702,7523.1 MBInstallments payments
Create installments payment
Create a new installments payment.
This endpoint generates the Authorization created event.
post/payments/v1/payments/installments
Headers
x-tenantstring required
Example:TN-c0e4c660-9059-404c-ab22-761aa431766c
Unique Org ID.
x-account-idstring
Optional account identifier.
x-skip-timelinestring
Example:true
If set to true, this will prevent the generation of timeline events in the customer timeline.
x-cidstring
Example:c737895c-8159-4c0c-a92a-a4f8600bff37
Related correlation identifier. If none is provided, a random one is generated.
Request body
Example request
{
"tracking_id": "be68db6e-8da0-4761-8632-6a51857bd123",
"account_id": 101,
"charging_amount": 12.13,
"processing_code": "004000",
"descriptor": "Installments payment",
"skip_balance_validation": true,
"skip_account_status_validation": true,
"financed_charge": {
"name_amount": 12.13
},
"metadata": "{ \"key\": \"value\"}",
"first_installment_date": "2023-12-31",
"installments": [
{
"installment_number": 1,
"total_amount": 1.15,
"principal_amount": 10,
"interest_amount": 1,
"interest_rate": 0.1,
"tax_amount": 0.05
}
],
"original_authorization": {
"id": 101,
"type": "NETWORK"
}
}Response
Created
Example response
{
"authorization_id": 15301234,
"event_date": "2020-01-02T15:14:00.218Z",
"tracking_id": "82766158-514c-42f0-87e2-1bb3250c6dee"
}