Skip to main content

2025

This changelog contains the changes that took place in 2025 in chronological order.


11 Feb 2025 v1.37
Deployment DateEnvironment
11 Feb 2025UAT
11 Feb 2025Production

All endpoints:

  • To ensure that none of the properties start or end with a whitespace, the pattern: (?!\s)(?!.\s$) was added to each property with an existing regex.
  • To ensure that required properties do not allow strings consisting only of whitespace, the pattern: (?!\s$) was added to the existing regex.

Modified endpoints:

  • POST /customers - Create new customer
  • POST /customers/{customer_id}/cards - Create a new card for a customer by customer_id
  • PATCH /customers/{customer_id}/addresses - Update a customer address by customer_id
  • GET /cards/{card_id} - Retrieve card details by card_id
  • GET /customers/{customer_id} - Retrieve customer details by customer_id
  • GET /corporates/{corporate_id} - Retrieve corporate details by corporate_id
  • POST /corporate - Creates a new corporate
  • PATCH /corporates/{corporate_id} - Update a corporate by corporate_id
  • POST /corporates/accounts/{corporate_account_id}/outgoing-credit-transfer - Initiate SCT payment
  • POST /accounts/{account_id}/outgoing-credit-transfer - Initiate SCT payment
    • Property ‘line_1’ to change from 100 to maximum 70 characters
    • Property ‘line_2’ to change from 100 to maximum 70 characters
    • Property ‘line_3’ to change from 100 to maximum 70 characters
    • Property ‘city’ to change from 50 to maximum 35 characters
    • Property ‘postal_code’ to change from 10 to maximum 9 characters