get_filters
Retrieve saved Pipedrive filters to find filter IDs for querying custom fields in deals, persons, or organizations.
Instructions
Get all saved filters from Pipedrive.
Returns the list of saved filters that can be used with get_deals, get_persons, and get_organizations. Filters allow you to query by custom fields that aren't directly supported in the API.
To filter by custom fields (like "User Type = cemoh"):
Create a filter in Pipedrive UI with your criteria
Use get_filters() to find the filter's ID
Pass that filter_id to get_persons(), get_deals(), etc.
Args: filter_type: Filter by type - 'deals', 'persons', 'org', 'products', 'activities' If not specified, returns all filters.
Returns: JSON array of filters with id, name, and type
Examples: - get_filters() - Get all saved filters - get_filters(filter_type="persons") - Get only person/contact filters - get_filters(filter_type="deals") - Get only deal filters
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| filter_type | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |