Skip to main content

Updating the Current Account Maximum Number of Installments

Description

This service is used to update the maximum number of installments that can be applied during debt collection for a current account transaction.

It is typically called within the scope of debt restructuring or payment plan operations when it is necessary to change the MaxInstallment value of a specific transaction.

  • Enpoint: /cat/cat/maxInstallment
  • Method (Method): PUT

Header Information

  • Header: Authorization: Bearer {token}, Content-Type: application/json
  • Body: JSON

Request Body

FieldRequiredFormatDescription / ExampleValidation
erpCodeYesstringExample: D17841154Cannot be empty. The related ERP record must exist in the system.
MaxInstallmentCountYesintExample: 12Must be greater than 0. Must not exceed the maximum installment count defined in the portal.

Business Rule

The entered MaxInstallmentCount value cannot be greater than the maximum installment count defined on the portal side. Otherwise, the following error message is returned:

“You can define an installment count greater than 0 and less than 12 at maximum.”

Sample Request

  • Header: Authorization: Bearer {token}, Content-Type: application/json
{  
"erpCode": "YeniErpKodu123",
"MaxInstallmentCount": 12
}