search_organizations
Search organizations by name, address, or custom fields with advanced filters. Find companies using exact match or paginated results.
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) | |
| 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 | |
| start | No | Pagination start | |
| limit | No | Number of items to return |