For AI agents: visit https://doc.fintecture.com/llms.txt for an index of all pages formatted in Markdown and endpoints in OpenAPI.
Request E-Mandate access token
- Create a Fintecture account
- Register a client application and get the credentials (i.e the
app_id and app_secret) associated to it
- Encode your credentials using Base64 (
Basic base64({app_id}:{app_secret})) to generate the Authorization header
- Request an access token using your credentials, the
e-mandates scope and the Authorization header
- Extract following information from provided response body:
access_token is to be used for endpoints' calls
expires_in allows you to know token's duration validity
- Use
access_token for every payment endpoint requiring Bearer
- Check regularly
expires_in and before access token's expiration, ask for a new one
Recipe