Authentication
ModernFi’s approach to authentication is designed to ensure the security and safety of user data and assets. Follow these steps to get up and running with the ModernFi API.
1. Obtain Client ID and Secret
To get your Client ID and Client Secret, contactthe ModernFi team. When reaching out, let your representative know whether you need read-only or read+write access:
- Read-only: retrieve accounts, depositors, transactions, and statements without the ability to modify records.
- Read+write: full access to retrieve and create or modify records.
ModernFi will onboard your institution and share the corresponding credentials via SendSafely.
2. Request an Access Token
With your Client ID and Client Secret, make a request to the oauth2/token endpoint to receive an access_token.
The response is of the following shape:
3. Pass the Token in Your API Call Headers
To pass your user token to ModernFi APIs, add it as a header to your API calls in the following format:
If, for example, your API token were eyJraWQiOiI3Yll, your authorization header will be:
Here is an example API call that properly sets the authorization header:
Token Expiration and Caching
Access tokens have a TTL of 86400 seconds (24 hours). We recommend caching your token and reusing it across API calls rather than requesting a new token on each request. When the token expires, simply request a new one using the same credentials.
If you need to revoke a token before it expires, contactyour ModernFi representative.