search_conversations
Search Intercom conversations with a raw query object to filter by state, assignee, or contact email. Returns a slim list of summaries without full parts.
Instructions
Search Intercom conversations. Returns a SLIM list (id, state, contact, timestamps) with NO conversation parts — call get_conversation for full content. Pass a raw Intercom query object.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Intercom search query object, e.g. {"operator":"AND","value":[{"field":"state","operator":"=","value":"open"}]}. Add {"field":"admin_assignee_id","operator":"=","value":<id>} to filter by assignee, or {"field":"source.author.email","operator":"=","value":"<email>"} by contact email. | |
| per_page | No | Results per page (default 20, max 50) | |
| starting_after | No | Pagination cursor from a previous response's "next" field |