added
Release Notes v2.0
30 days ago by Vault
This section contains brief descriptions of the changes included in a product update.
v.2.0.6 - 2024.11.05
- Added the PayIn operations section in Transactions Operations.
- Added a new section for IBAN.
- Added detailed description for IBAN Top-Up process, explaining the usage of
exchange
andtransfer
methods for topping up IBAN accounts, along with the role of the BANK_ACCOUNT_VIRTUAL account type in this process. - Endpoint: Create Account
- Added detailed description for the
accountType
parameter, specifying possible values (CHECKING
,CARD_PREPAID
,BANK_ACCOUNT_VIRTUAL
) and their use cases.
- Added detailed description for the
v.2.0.5 - 2024.10.29
Update in the Wallet Section:
- The endpoint
GET /wallet/v2/address
has been removed. - Required parameters have been highlighted for a clearer understanding of request requirements.
v.2.0.4 - 2024.10.28
- Added the FAQ article.
- Updated the Introduction article.
v.2.0.3 - 2024.10.18
- Registration Flow Update. The registration flow has been modified.
v.2.0.2 - 2024.10.10
- Registration Flow Update. The registration flow has been modified. Now, the initial request must be made without the
emailConfirmCode
parameter, which triggers the system to send a confirmation code to the user's email. In the second request, theemailConfirmCode
parameter must always be set to12345
to complete the email verification and finalize the account creation process, regardless of the actual code sent to the user.
v.2.0.1 - 2024.10.09
- The Send one time password endpoint is deprecated. Use Multi-Factor Authentication (MFA) instead of the legacy OTP.
- The endpoint POST OAuth2.0 Token Service has been updated with the following parameters:
- refresh_token (
string
): The refresh token issued during the initial authentication, used to request a new access token. - client_id (
string
, required, defaults tohaequi3Aah8lie2r
): The client identifier, same as in the query parameters. - client_secret (
string
): The secret key corresponding to the client, same as in the query parameters. - username (
string
): The username of the user for whom the access token is requested. - password (
string
): The password for the user’s account. - twoFactorId (
string
): The identifier for two-factor authentication, typically issued during the challenge. - twoFactorCode (
string
): The code provided by the user for two-factor authentication. - twoFactorChallenge (
object
): An object that may contain additional data related to two-factor authentication challenges.
- refresh_token (