Changelog

Changelog 01.08.2022

  1. ADD - startDate, endDate and page are required parameters on account & card statement APIs. Dates are UNIX epoch timestamps with ms precision

  2. ADD - Card tracking number will be present in .address.trackingNumber - Will not be returned on sandbox, but will be present on production. Tracking number is present when card.dispatchMethod === EXPRESS || TRACKED

EXPRESS = DHL Express (Includes Tracking)
TRACKED = DHL Global Mail (Includes Tracking)
POST = Standard Latvian Post (No Tracking)

  1. ADD - Card activation takes any 4 digit code as input to activate card on sandbox

  2. FIX - Fixed address returned on VIRTUAL card creation response

  3. FIX - Fixed validation for dispatchMode on physical cards

  4. ADD - Added pagination to get all wallets by user - startDate, endDate and page is mandatory for /wallets/get/all

  5. ADD - FEATURE SEPA Payin Simulator - When using the simulator to add funds to a EUR account, this now simulates an incoming SEPA transaction and sends out a webhook when completed. This means EUR accounts must be enriched to simulate a deposit into them.

  6. ADD SEPA Payouts - SEPA transactions can now be sent outwards from EUR accounts.
    Please note, on production, only first party transfers are allowed, i.e. the recipient name must match the name of your customer, meaning your customer can only send/withdraw funds from accounts at other banks in their own name. Third party transfers will be enabled at a later date.

  7. ADD - Get corporate account statement is also paginated by date as above

  8. ADD - Added new transaction types on webhooks and account statements -

'SEPA_PAYIN_COMPLETED' = 'SEPA_PAYIN_COMPLETED',
'SEPA_PAYOUT_COMPLETED' = 'SEPA_PAYOUT_COMPLETED',
'SEPA_PAYIN_FAILED' = 'SEPA_PAYIN_FAILED',
'SEPA_PAYOUT_FAILED' = 'SEPA_PAYOUT_FAILED',
'SEPA_PAYIN_REVERTED' = 'SEPA_PAYIN_REVERTED',
'SEPA_PAYOUT_REVERTED' = 'SEPA_PAYOUT_REVERTED',
'SEPA_PAYOUT_INITIATED' = 'SEPA_PAYOUT_INITIATED',

  1. UPDATE - Get account/card statement and get wallets by user now returns an object with {transactions, count, total} and {wallets, count, total} respectively. We will be transitioning all paginated APIs to this format of request being paginated by date and response including a count and total.

  2. ADD COMPLETE/FAIL a SEPA Payout transaction via a simulator - Transaction list updates, credit back on failure and status webhooks are sent.

  3. ADD Webhooks on SEPA outbound txs