Authenticate
To ensure the security and privacy of our user's data, only authenticated users are permitted to make requests to our API. In order to authenticate your application and access our API, we employ the OAuth 2.0 protocol with bearer tokens.
For username you need to use your client-id, while for password you need to use your client-secret.
Request Body required
the id of your customer on your application. This will be used for better user experience, such as filling preferred bank.
- 200
- 401
Successful operation
Schema
The token you need to use in any future API call. All requests to the RTP API are made on behalf of the user authorized by the access token.
The type of the access token provided. Its always going to be 'bearer'.
The expiration time of the bearer token. Once is expired you will need to create a new one. For this purposes, you need to create the token just before the RTP flow starts, so the user always have a fresh token to use.
{
"access_token": "6c470ffa-abf1-41aa-b866-cd3be0ee84f4",
"token_type": "bearer",
"expires_in": 3599
}
Authentication information is missing or invalid. Please, check your client-id, your client-secret and your Bearer token if is still valid