autocomplete
Returns all accounts of the user returned in a basic auto-complete array.
get/v1/autocomplete/accounts
Query parameters
querystring string
The autocomplete search query.
limitinteger
The number of items returned.
datestring string
If the account is an asset account or a liability, the autocomplete will also return the balance of the account on this date.
typesAccountTypeFilter[]
Optional filter on the account type(s) used in the autocomplete.
Headers
X-Trace-Idstring uuid
Example:40c71bbb-c676-4f24-83cf-cc725d7d7a00
Unique identifier associated with this request.
Response
A list of accounts with very basic information.
Example response
[
{
"id": "2",
"name": "Checking Account",
"name_with_balance": "Checking Account ($123.45)",
"active": true,
"type": "Asset account",
"currency_id": "12",
"currency_name": "Euro",
"currency_code": "EUR",
"currency_symbol": "$",
"currency_decimal_places": 2,
"account_currency_id": "2",
"account_currency_name": "US Dollar",
"account_currency_code": "USD",
"account_currency_symbol": "$",
"account_currency_decimal_places": 2
}
]Changes
No recorded changes to this endpoint across all 1 revision of this API.