filters_update
Update an existing filter's name and conditions in Pipedrive. Modify filter properties directly without recreating.
Instructions
Update an existing filter in Pipedrive.
Updates a filter's name and/or conditions. Only provide fields you want to change.
IMPORTANT LIMITATIONS:
Only ONE first-level condition group is supported (must be glued with 'AND')
Only TWO second-level condition groups are supported
First second-level group must be glued with 'AND'
Second second-level group must be glued with 'OR'
Maximum of 16 conditions per filter
Workflow tips:
Use filters/get to see current filter configuration before updating
Use filters/helpers to discover available field IDs and operators
Can update name only, conditions only, or both
Common operators: =, !=, <, >, <=, >=, LIKE, IN, IS NULL, IS NOT NULL
Common use cases:
Rename filter: { "id": 123, "name": "New Name" }
Update conditions: { "id": 123, "conditions": {...} }
Update both: { "id": 123, "name": "Updated", "conditions": {...} }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ID of the filter to update (required) | |
| name | No | New filter name (optional) | |
| conditions | No | New filter conditions structure (optional) |