search_organizations
Search for organizations in Pipedrive with advanced filtering by name, address, or custom fields. Use exact match for precise results and include fields to limit response data.
Instructions
Search for organizations with advanced filtering options.
Performs an organization-specific search across all organization fields.
Workflow tips:
Search term must be at least 2 characters
Specify fields to search: name, address, custom fields
Use include_fields to limit response data
Use exact_match for precise searches
Results ordered by relevance
Useful for finding companies by name or domain
Common use cases:
Search by name: { "term": "acme corporation" }
Search by address: { "term": "new york", "fields": "address" }
Exact company match: { "term": "ACME Corp", "exact_match": true }
Search custom field: { "term": "enterprise", "fields": "customer_type" }
Limit response: { "term": "acme", "include_fields": "name,address,owner_id" }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| term | Yes | Search term (min 2 chars) | |
| limit | No | Number of items to return | |
| start | No | Pagination start | |
| fields | No | Comma-separated field names to search | |
| exact_match | No | Perform exact match search | |
| include_fields | No | Comma-separated fields to include in response |