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
code
received - Encode your credentials using Base64 (
Basic base64({app_id}:{app_secret})
) to generate theAuthorization
header - Exchange the
code
for an access token using theais
scope and theAuthorization
header - Extract the
access_token
- Use the
access_token
for every bank account endpoint requiring Bearer - Check regularly
expires_in
and before access token's expiration, ask for a new one and refresh token when needed
Updated 6 days ago