list_all_pipelines
Retrieve all pipelines from your ActiveCampaign account. Filter by title or stage presence, order by title or popularity, and paginate results.
Instructions
🟢 READ-ONLY · Deal Groups · GET /dealGroups
List all pipelines
Fetches data. Makes no changes to your ActiveCampaign account.
Retrieve all existing pipelines
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. | |
| filters | No | Field filters as an object, e.g. {"name":"ecom"} → filters[name]=ecom. | |
| orders_title | No | Order by Pipeline's title Sent to ActiveCampaign as "orders[title]". | ASC |
| filters_title | No | Filter by pipeline's title. The filter matches any pipeline titles that contain the provided title (i.e. "Contact" matches all of "In Contact", "To Contact", and "Contact Pipeline"). Sent to ActiveCampaign as "filters[title]". | |
| orders_popular | No | Order by number of deals each pipeline has. If pipelines have same number of deals, pipelines' created dates are used to determine the order. Sent to ActiveCampaign as "orders[popular]". | ASC |
| filters_have_stages | No | Filter by whether pipelines have deal stages. Can be either `1` or `0`. If `1`, only pipelines with at least one stage will be returned. Sent to ActiveCampaign as "filters[have_stages]". |