Step by step
1
Authorize
The first step is to redirect the user to the Qonto OAuth server.The Qonto user will be invited to authenticate.
Then they will have to allow your application to access one of the organizations they are part of.
cf. this endpoint for a technical description of this step.
Then they will have to allow your application to access one of the organizations they are part of.
cf. this endpoint for a technical description of this step.2
Exchange the authorization code for an access token
Once user has granted access to his account, he will be rederected to your application via your
redirect_uri with a temporary authorization code.On your backend, you will have to exchange this code for an access_token.cf. this endpoint for a technical description of this step.3
Use your access token
To perform authenticated requests on the Qonto API, you will have to provide the
access_token in the Authorization header, as describe in this example:Resources
- If you need to understand better the OAuth flow: Postman visual flow.
- If you need more details about OAuth 2.0: Official documentation.