search_calls_by_account
Find calls involving a specific account by matching external participants' email domains, using date filtering and automatic pagination.
Instructions
Find calls involving a specific account/company by matching email domains of external participants. The Gong API does not natively support filtering by account name — this tool fetches calls in the date range and post-filters on parties[].emailAddress. Auto-paginates up to maxCalls. For external tech-stack joins (e.g., "all calls with prospects on Klaviyo"), resolve domains upstream and pass them here.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cursor | No | Pagination cursor (advanced). | |
| domains | Yes | Email domains (e.g., ["acme.com", "acme.io"]). A call matches if any external participant has an email at one of these domains. | |
| maxCalls | No | Maximum calls to fetch and filter (default: 500). Auto-paginates underlying API. | |
| toDateTime | No | End date/time in ISO 8601 format. | |
| workspaceId | No | Filter by workspace ID. | |
| fromDateTime | No | Start date/time in ISO 8601 format. | |
| primaryUserIds | No | Pre-narrow by call host user IDs (faster, server-side). | |
| matchCrmAccount | No | Also match calls where a CRM Account context object name contains a domain root (e.g., "acme" from "acme.com"). Requires CRM integration. Default false. |