List Accounts
GET/accounting/accounts
Returns a list of Accounts.
Request
Query Parameters
The ID of the credential.
The page number of the results. Default is 1.
The maximum number of results to show on a page. Default is 50. Maximum is 100.
Used to filter accounts with this third-party application ID.
Used to filter accounts with the exact account name.
Used to filter accounts whose account names contain the provided value.
Used to filter accounts whose account name to exclude.
Used to filter accounts whose account descriptions contain the provided value.
Used to filter accounts with the exact account classification.
Used to filter accounts whose account classifications contain the provided value.
Used to filter accounts whose account classification to exclude.
Used to filter accounts with the exact account type.
Used to filter accounts whose account types contain the provided value.
Used to filter accounts whose account type to exclude.
Used to filter accounts with the exact account status.
A string used to retrieve accounts with an account status containing a specific value.
A string that should not match the account status of accounts to be retrieved.
Used to filter accounts with the exact account current balance.
Used to filter accounts with the minimum account current balance.
Used to filter accounts with the maximum account current balance.
Used to filter accounts with the maximum account current balance.
Used to filter accounts with the exact account currency.
Used to filter accounts with the exact account number.
Used to filter accounts whose account numbers contain the provided value.
Used to filter accounts whose account number to exclude.
Used to filter accounts with this parent account ID.
Used to filter accounts with this company ID.
Filter objects created after a specified date.
Filter objects created before a specified date.
Filter objects last updated after a specified date.
Filter objects last updated before a specified date.
Header Parameters
Default value: bearer YOUR_API_KEY
Responses
- 200
- 400
200
- application/json
- Schema
- Example (from schema)
- Result
Schema
Array [
]
accounts
object[]
Default value: true
{
"accounts": [
{
"remoteId": "91",
"accountName": "Business insurance",
"accountDescription": {},
"classification": "Expense",
"accountType": "Expense",
"accountStatus": "Active",
"currentBalance": {},
"currency": "USD",
"accountNumber": {},
"parentAccountId": {},
"companyId": {},
"id": "00000000-0000-0000-0000-00000000000",
"remoteDeleted": false,
"createdAt": "2024-02-22T11:12:54.946Z",
"updatedAt": "2024-02-22T13:46:05.011Z"
}
]
}
{
"accounts": [
{
"remoteId": "91",
"accountName": "Business insurance",
"accountDescription": null,
"classification": "Expense",
"accountType": "Expense",
"accountStatus": "Active",
"currentBalance": null,
"currency": "USD",
"accountNumber": null,
"parentAccountId": null,
"companyId": null,
"id": "00000000-0000-0000-0000-00000000000",
"remoteDeleted": false,
"createdAt": "2024-02-22T11:12:54.946Z",
"updatedAt": "2024-02-22T13:46:05.011Z"
},
{
"remoteId": "99",
"accountName": "Opening balance equity",
"accountDescription": null,
"classification": "Expense",
"accountType": "Expense",
"accountStatus": "Active",
"currentBalance": null,
"currency": "USD",
"accountNumber": null,
"parentAccountId": null,
"companyId": null,
"id": "00000000-0000-0000-0000-00000000000",
"remoteDeleted": false,
"createdAt": "2024-02-22T11:12:54.946Z",
"updatedAt": "2024-02-22T13:46:05.011Z"
},
{
"remoteId": "139",
"accountName": "Credit card interest",
"accountDescription": null,
"classification": "Equity",
"accountType": "Equity",
"accountStatus": "Active",
"currentBalance": null,
"currency": "USD",
"accountNumber": null,
"parentAccountId": null,
"companyId": null,
"id": "00000000-0000-0000-0000-00000000000",
"remoteDeleted": false,
"createdAt": "2024-02-22T11:12:54.946Z",
"updatedAt": "2024-02-22T13:46:05.011Z"
}
]
}
400
- application/json
- Schema
- Example (from schema)
- Result
Schema
{}
{}