Before testing, make sure you have a valid access_token and id_token obtained using your client_id.
To get your first response from the API, you will need a browser and CURL (or any HTTP client).
With your tokens ready, you can call any API listed on this portal. Below is an example request to the Accounts API:
curl --location 'https://api.openapi.raiffeisen.ru/api/v1/accounts?fields=Id,Number,Name,OrganizationName,Currency' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {your_access_token}' \
--header 'ID-Token: {your_id_token}'
Replace the placeholders with your actual values:
Authorization header, specify the token type Bearer and substitute the value of access_token instead of your_access_token,ID-Token header, substitute the value of id_token instead of your_id_token.A successful response will return HTTP 200 with an array of accounts available to the user whose tokens were used.