List Pipelines
ploomes_pipelines_listRetrieve all sales pipelines from Ploomes CRM, including configuration flags like stage requirements, win/lose settings, and quote/order creation permissions. Filter and paginate results.
Instructions
List all sales pipelines (funnels) in Ploomes CRM. Pipelines contain stages that deals move through. Each pipeline has configuration flags that control deal behavior: MustPassAllStages (deals must go through every stage in order), ForbiddenStageReturn (deals cannot move back to a previous stage), MayWinDeals (deals in this pipeline can be won), MayLoseDeals (deals in this pipeline can be lost), WinDealOnLastStage (deals are automatically won when moved to the last stage), MayCreateQuotes (quotes can be created for deals in this pipeline), MayCreateOrders (orders can be created for deals in this pipeline). Use $select to get specific fields. Key fields: Id, Name, Ordination, Archived, MustPassAllStages, ForbiddenStageReturn, MayCreateQuotes, MayCreateOrders, MayWinDeals, MayLoseDeals, WinDealOnLastStage.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| filter | No | OData $filter expression. E.g.: "Archived eq false", "Name eq 'Sales'" | |
| select | No | Fields to return. E.g.: "Id,Name,Ordination,Archived,MayWinDeals,MayLoseDeals" | |
| orderby | No | Sort expression. E.g.: "Ordination asc", "Name asc" | |
| top | No | Max items to return (default 50, max 300) | |
| skip | No | Items to skip for pagination |