Skip to main content

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
    customerId string required

    the id of your customer on your application. This will be used for better user experience, such as filling preferred bank.

Responses

Successful operation


Schema
    access_token string

    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.

    token_type string

    The type of the access token provided. Its always going to be 'bearer'.

    expires_in number

    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.

Loading...