Request a Customers access token
Flow
- Create a Fintecture account
- Register a client application and get the credentials (i.e the
app_idandapp_secret) associated to it - Encode your credentials using Base64 (
Basic base64({app_id}:{app_secret})) to generate theAuthorizationheader - Request an access token using your credentials, the
customersscope and theAuthorizationheader - Extract following information from provided response body:
access_tokenis to be used for endpoints' callsexpires_inallows you to know token's duration validity
- Use
access_tokenfor every payment endpoint requiring Bearer - Check regularly
expires_inand before access token's expiration, ask for a new one
Updated 8 months ago