Release Notes v2.0
by VaultThis section contains brief descriptions of the changes included in a product update.
v.2.0.16 - 2024.12.17
- Updated: The article on the Registration Process has been updated. Now includes details about the integration of the Terms and Conditions and Sign Terms and Conditions endpoints, which are required for users in the production environment and optional in the sandbox environment.
v.2.0.15 - 2024.12.06
- Updated: The parameters for the Card-holder Service section have been updated. Please note the changes carefully.
- Unchanged: The card ordering flow remains the same.
v.2.0.14 - 2024.11.29
- Updated: The response fields for the Get Subscriptions endpoint have been updated.
- Updated: The body parameters for the Start Subscription endpoint have been updated.
- Updated: The body parameters for the Webhook endpoint have been updated.
- Updated: The response fields for the Cancel Subscription endpoint have been updated.
- Updated: The response fields for the Get Subscription by ID endpoint have been updated.
- New Endpoint: A new endpoint has been added: Update User Verification Data for verification processes.
- Added: Detailed description has been added for the Reset Password Confirmation endpoint.
- Added: Detailed description has been added for the Update Primary Email endpoint.
v.2.0.13 - 2024.11.25
- Article updated: The article for Subscription Operations has been updated and subscription plans have been added.
- New article added: A detailed guide on on-ramp functionality and SDK integration for CHECKOUT payments is now available.
v.2.0.12 - 2024.11.21
- Endpoint removed: The
POST /card-holder/invoice/webhook
endpoint has been removed as it is a service endpoint. - Guide updated: The Card Order & Payment Flow guide has been updated.
- Field description added: The description for the
secondary_cardname
field has been added to the Create Card Request documentation.
v.2.0.11 - 2024.11.19
- Articles added: The articles for the Google Pay Card Setup Guide and the Apple Pay Card Setup Guide have been added.
v.2.0.10 - 2024.11.15
- Video instructions will be added to guides alongside descriptions, making the documentation more interactive and user-friendly. ๐
v.2.0.9 - 2024.11.14
- Added a new article: Ordering a Visa Card, providing a comprehensive guide for the card ordering process, including step-by-step instructions and API details.
v.2.0.8 - 2024.11.13
- The Acquiring section has been updated with detailed descriptions of parameters and endpoints.
v.2.0.7 - 2024.11.11
- Added the Operations section to the documentation, providing detailed descriptions of available operations.
- Added a new article on Account Funding and Transfers, explaining the processes for account funding and transfers between different account types.
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 (