Request an AIS access token
Flow
- Create a Fintecture account
- Register a client application and get the credentials (i.e the
app_id) associated to it - Request the AIS Connect URL to which you will redirect the user
- On redirection extract the
codereceived - Encode your credentials using Base64 (
Basic base64({app_id}:{app_secret})) to generate theAuthorizationheader - Exchange the
codefor an access token using theaisscope and theAuthorizationheader - Extract the
access_token - Use the
access_tokenfor every bank account endpoint requiring Bearer - Check regularly
expires_inand before access token's expiration, ask for a new one and refresh token when needed
Updated 9 months ago