Version 4.2.13

Connectors improvements

  • Email validation, used in some additional properties requested, has been enhanced. it's not case sensitive anymore and it ensures no not allowed characters at the begin and the end.
  • FI S-Pankki (1100): fix for SCT Instant payment initiation that was done as normal SCT.
  • Wise: upgrade bank API to v3.1.11.
    • They have changed the transaction id string format. E.g. before we had "123456789.TU9ORVR***jpUUkFOU0ZFUjo6MjE1MzM3MjUzMg==", and after, we have "123456789.TRANSFER-1997374242".
  • FI Danske Bank (1103 & 1104): added null protection on RemittanceInformationUnstructured and creditor postal address.
  • SK Tatra: temporary fix for bank not accepting PSU IP v6 addresses but only IP v4.
  • SE SEB: upgrade PIS URLs.

Owner names

We have added support for multiple owners per account via the new 'OwnerNames' property when available on bank side.

Existing 'OwnerName' property remains unchanged for backwards compatibility.

'OwnerNames' is returned as an array of owner objects with the following fields:

{
  "iban": "...",
  "Currency": "...",
	"ownerName": "...",
	"ownerNames": [
    {
      "firstName": "First name of the owner",
      "fullName": "Full name of the owner",
      "lastName": "Last name of the owner",
      "namePrefix": "Name prefix normalized to standard values",
      "namePrefixRaw": "Name prefix (Mr, Mrs, etc) as returned by the bank"
    }
	]
}