Get Accounts
Use the /api/fdx/5/accounts endpoint to get a list of customer accounts in FDX format.
Use theDocumentation Index
Fetch the complete documentation index at: https://docs.flinks.com/llms.txt
Use this file to discover all available pages before exploring further.
/api/fdx/5/accounts endpoint to get a list of customer accounts in FDX format.
To successfully call this endpoint, you must first call the /Token endpoint to obtain a valid access_token using:
- grant_type:
authorization_codeorrefresh_token - client_id:
{recipient client_id} - client_secret:
{recipient client_secret} - redirect_uri:
{recipient redirect_uri} - code:
{with grant type authorization_code} - refresh_token:
{with grant type refresh_token}
Result types
TheresultType query parameter controls the level of detail returned:
| Value | Description |
|---|---|
lightweight (default) | Returns metadata fields only: accountId, accountCategory, accountType, accountNumberDisplay, productName, nickname, status, description, currency. |
details | Returns the full account record including balances, interest rates, transactions, and routing information. |
How to handle an error response
If you receive an error response, refer to the List of Data Access Errors for more information about the error and how to resolve it.Response is different for each Data Provider
This endpoint returns different fields for each Data Provider. For more information about the fields that each Data Provider supports, review the Data Provider’s details.Authorizations
Bearer token obtained from the /Token endpoint.
Query Parameters
The ID of the customer account that you want to retrieve. If you are requesting more than one account, separate each accountId with a comma.
Specify the type of results you want to see. Possible values include the following: - lightweight = Return the metadata fields only - details = Return a full list of details The default value of this parameter is lightweight.
An opaque cursor returned by the provider and used to retrieve the next page of results. Clients should pass this value unchanged to continue fetching data. The format of the string is internal and should not be interpreted or modified.
The maximum number of accounts that you want to return with this request. Use this field to set a limit on the amount of data you receive.