Search Gong Calls
gong_search_callsFind recorded calls in Gong within a date range, returning metadata like title, date, duration, participants, and URL for further analysis.
Instructions
Search for recorded calls in Gong within a date range.
Returns a list of calls with metadata: title, date, duration, participants, and Gong URL. Use this to find calls for a specific time period, then use gong_get_call_details or gong_get_transcript for deeper analysis.
Args:
from_date (string): Start date in ISO 8601 (e.g. '2024-01-01T00:00:00Z')
to_date (string): End date in ISO 8601 (e.g. '2024-02-01T00:00:00Z')
workspace_id (string, optional): Gong workspace ID to scope results
cursor (string, optional): Pagination cursor from previous response
response_format ('markdown' | 'json'): Output format (default: 'markdown')
Returns: List of calls with title, date, duration, direction, participants, and URL.
Examples:
"Find all calls last week" -> from_date='2024-01-08T00:00:00Z', to_date='2024-01-15T00:00:00Z'
"Get recent demo calls" -> search calls then filter by title containing 'demo'
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cursor | No | Pagination cursor from a previous response | |
| to_date | Yes | End date in ISO 8601 format (e.g. '2024-02-01T00:00:00Z') | |
| from_date | Yes | Start date in ISO 8601 format (e.g. '2024-01-01T00:00:00Z') | |
| workspace_id | No | Optional Gong workspace ID to scope results | |
| response_format | No | Output format: 'markdown' or 'json' | markdown |