products_list
List products from Pipedrive with filters by owner, saved filters, specific IDs, or first character. Control pagination and include total count.
Instructions
List all products with optional filtering and pagination.
Supports filtering by:
user_id: Filter by owner
filter_id: Apply a saved filter
ids: Array of specific product IDs to return
first_char: Filter by first character of name (single letter)
get_summary: Include total count in response
Returns paginated results. Use start/limit for manual pagination.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| start | No | Pagination start (default: 0) | |
| limit | No | Items per page, max 500 (default: 100) | |
| user_id | No | Filter by owner user ID | |
| filter_id | No | Filter ID to apply | |
| ids | No | Array of product IDs to return | |
| first_char | No | Filter by first character of name (e.g., "A", "B") | |
| get_summary | No | Include total count in response |