> ## Documentation Index
> Fetch the complete documentation index at: https://docs.heyhumm.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Gong

> Connect to Gong revenue intelligence platform.

Humm reads your Gong call transcripts and interaction stats. Ask about conversation patterns, call volume by rep, or pull transcript snippets for a specific account.

## Tools

| Tool                        | Description                                                              |
| --------------------------- | ------------------------------------------------------------------------ |
| `GONG_LIST_USERS`           | List all users in the workspace with pagination                          |
| `GONG_GET_USERS`            | Retrieve one or more users by their Gong user IDs                        |
| `GONG_GET_CALL_TRANSCRIPTS` | Get call transcripts by call IDs or date range                           |
| `GONG_LIST_DETAILED_CALLS`  | List detailed call data with participants, briefs, and interaction stats |

## Filter Parameters

Most Gong tools accept a `filter` parameter to scope results. Common filter options:

```json theme={"theme":{"light":"github-light","dark":"github-dark"}}
// Filter by date range
{
  "filter": {
    "fromDateTime": "2025-01-01T00:00:00Z",
    "toDateTime": "2025-01-31T23:59:59Z"
  }
}

// Filter by specific call IDs
{
  "filter": {
    "callIds": ["7782342274025937895", "7782342274025937896"]
  }
}

// Filter by call owner (GONG_LIST_DETAILED_CALLS only)
{
  "filter": {
    "fromDateTime": "2025-01-01T00:00:00Z",
    "toDateTime": "2025-01-31T23:59:59Z",
    "primaryUserIds": ["234599484848423"]
  }
}
```

## Pagination

All list tools support cursor-based pagination. When a response contains more results, use the `cursor` value from the response in subsequent requests:

```json theme={"theme":{"light":"github-light","dark":"github-dark"}}
{
  "cursor": "eyJhbGciOiJIUzI1NiJ9.cursor_token"
}
```

## Authentication

<Card title="OAuth" icon="plug">
  Connect securely via Gong OAuth. Authorize Humm to access your Gong workspace.
</Card>
