search_by_field
Search for deals, persons, organizations, or products by any custom or standard field. Specify field type and key for targeted results.
Instructions
Search for items by a specific field value.
Searches for items by targeting a specific field (custom or standard fields).
Workflow tips:
Specify field_type: dealField, personField, organizationField, or productField
Provide field_key: the API key of the field to search
Use exact_match=true for precise matches
return_item_ids=true returns only IDs instead of full objects
Useful for searching custom fields
Common use cases:
Search deal by custom field: { "term": "ABC123", "field_type": "dealField", "field_key": "custom_id" }
Search person by email: { "term": "john@example.com", "field_type": "personField", "field_key": "email" }
Search org by domain: { "term": "acme.com", "field_type": "organizationField", "field_key": "domain" }
Get IDs only: { "term": "value", "field_type": "dealField", "field_key": "field", "return_item_ids": true }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| term | Yes | Search term | |
| field_type | Yes | Type of field to search | |
| field_key | Yes | API key of the field to search | |
| exact_match | No | Perform exact match search | |
| return_item_ids | No | Return item IDs instead of full objects | |
| start | No | Pagination start | |
| limit | No | Number of items to return |