Step-by-step guide to build, test and release your integration.
123456
.Log in to the Sandbox web app
123456
.
Create my own user (optional)
123456
.Create my own organization (optional)
Owner
: the email address of your new user.Price plan code
: choose your plan depending on the functionalities you need to test; indeed, some functionalities are only available for given plans (cf. Qonto pricing for more details).Organization name
Balance amount
: it will be the amount available in your test bank account, 100000
€ will be a good start!Set up Postman
Authenticate
X-Qonto-Staging-Token
in your API calls to the Sandbox environment.List transactions
🔗 Endpoint | GET https://thirdparty.qonto.com/v2/organization |
🔒 Auth | API Key or OAuth 2.0 (organization.read scope) |
📲 SCA | No |
id
or the iban
of the bank account retrieved with the previous API call.🔗 Endpoint | GET https://thirdparty.qonto.com/v2/transactions |
🔒 Auth | API Key or OAuth 2.0 (organization.read scope) |
📲 SCA | No |
Initiate external transfers
🔗 Endpoint | POST https://thirdparty.qonto.com/v2/external_transfers/checkout |
🔒 Auth | OAuth 2.0 only (payment.write scope) |
📲 SCA | Yes 👉 the external transfers creation will not be fully automated; the authenticated membership will receive a push notification and will have to approve the external transfers within 15 minutes. |
👤 Beneficiary type | Any type of beneficiary (i.e. new or existing one, trusted or not); if the beneficiary doesn’t exist, it will be created once the transfer is successfully created. |
🔢 Number of transfers | Up to 400 |
🔗 Endpoint | POST https://thirdparty.qonto.com/v2/external_transfers |
🔒 OAuth scope | OAuth 2.0 only (payment.write scope) |
📲 SCA | No 👉 the external transfer creation will be fully automated. |
👤 Beneficiary type | Only trusted beneficiary; the list of trusted beneficiaries can be retrieved through the List beneficiaries endpoint. |
🔢 Number of transfers | 1 |
🔗 Endpoint | POST https://thirdparty.qonto.com/v2/requests/multi_transfers |
🔒 OAuth scope | OAuth 2.0 only (request_transfers.write scope) |
📲 SCA | No 👉 the transfers request creation will be fully automated but not the external transfers creation since the request will have first to be approved by a membership in the Qonto app without any time constraints. |
👤 Beneficiary type | Any type of beneficiary (i.e. new or existing one, trusted or not); if the beneficiary doesn’t exist, it will be created once the transfer is successfully created. |
🔢 Number of transfers | Up to 400 |
X-Qonto-Staging-Token
header is not necessary in Production.401 Unauthorized
error to your API calls.