list_all_accounts
Retrieve all accounts from your ActiveCampaign instance with support for search, filtering, sorting, and pagination. Optionally include counts of associated contacts and deals.
Instructions
🟢 READ-ONLY · Accounts · GET /accounts
List all accounts
Fetches data. Makes no changes to your ActiveCampaign account.
Retrieve all existing account
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Number of results per page (ActiveCampaign default 20, max 100). | |
| offset | No | Zero-based offset into the result set for pagination. | |
| orders | No | Sort order as an object, e.g. {"email":"ASC"} → orders[email]=ASC. | |
| search | No | Search by name | |
| filters | No | Field filters as an object, e.g. {"name":"ecom"} → filters[name]=ecom. | |
| count_deals | No | Whether to compute the contactCount and dealCount counts for the number of contacts/deals associated with each account. Set it to true to include the right counts. If set to false or omitted from the call, then contactCount and dealCount will not be counted and be simply displayed as 0. |