HomeGuidesRecipesAPI ReferenceChangelog
Log In
Changelog
These docs are for v2.1.1. Click to read the latest docs for v2.1.7.
improved

SANDBOX - v2.1.7 - 2024-09-03

❗️

BREAKING CHANGE !

We would like to announce big functional changes that will be implemented for endpoints:

POST / user bank account

POST / corporate bank account

TIMELINE

08 Oct 2024 deployment to SANDBOX
22 Oct 2024 deployment to PRODUCTION*

*We reserve the right to change the scheduled release date.

The change will remove the instant feedback when calling the above endpoints.
It means that only uuid will be returned in a response with no additional information.
All the existing information will be available in GET endpoint once status is no longer PENDING.

Note: Changes in the code will be visible from 22 Oct 2024 on PRODUCTION.
Changes in the API docs will be visible from now on SANDBOX environment and from 10th Sep on PRODUCTION.

Current webhook we are sending for Get Unblock bank account by uuid

Response body, 200 status code:
uuid: ''
currency: 'EUR, GBP'
bank_country: 'MT NG GB'
iban: ''
bic: ''
account_number: ''
sort_code: ''
bank_code: ''
account_name: ''

with this release we are adding also:
receiving_address: ''
status: 'PENDING, ACTIVE, DISABLED'

Current json you are getting:
uuid: ledgerDetails.uuid,
currency: ledgerDetails.currency,
iban: ledgerDetails.iban,
bic: ledgerDetails.bic!,
bank_country: ledgerDetails.bankCountry,
status: ledger.status,

or uuid: ledgerDetails.uuid,
currency: ledgerDetails.currency,
account_number: ledgerDetails.accountNumber,
sort_code: ledgerDetails.sortCode,
bank_country: ledgerDetails.bankCountry,
status: ledger.status,

To check the ledger's creation status, after calling CREATE endpoint you can:

1️⃣ call GET endpoint and receive status: ACTIVE, PENDING or DISABLED
2️⃣ wait for the webhook from Unblock, which will be sent every time we will get an information by PSP webhooks that the status has been changed.

👉 We want to ensure you will not miss the information with the incoming changes, so we will notify you of upcoming changes a few more times by Slack. The process of the deployment reminds as standard one, the change will be deployed first to the sandbox, later to production environment.

Thank you for the cooperation! 🚀🌟

Summary

Get ready for a smoother ride! 🏎️ 🚓 Our latest release with new endpoints to improve the information's sourcing process just landed. Dive in and explore the upgrades!

It's not an over. From now we are allowing users to have the separate 0x address per remote bank account! 🏦
There will be no need to switch settings, we will allow to have multiple different 0x addresses and transfer money to a specific single beneficiary.

This release will go into the production environment on Tuesday, 10th September 2024.

Added

GET / a merchant's list of transaction fees A new endpoint has been added, with the required input startDate andendDate you will get all transactions details, including fees charged.

GET / transaction details A new endpoint has been added, with the required input transactionHash you will get the details of a transaction details.

Changed

GET / Unblock bank account by uuid (User) status and receiving_address have been added to the 200 status code.

GET / Unblock bank account by uuid (Corporates) status and receiving_address have been added to the 200 status code.

GET / Details about destination bank account (User) status and receiving_address have been added to the 200 status code.

Deprecated

N/A