Skip to main content

Documentation Index

Fetch the complete documentation index at: https://heyhumm.ai/docs/llms.txt

Use this file to discover all available pages before exploring further.

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

ToolDescription
GONG_LIST_USERSList all users in the workspace with pagination
GONG_GET_USERSRetrieve one or more users by their Gong user IDs
GONG_GET_CALL_TRANSCRIPTSGet call transcripts by call IDs or date range
GONG_LIST_DETAILED_CALLSList detailed call data with participants, briefs, and interaction stats

Filter Parameters

Most Gong tools accept a filter parameter to scope results. Common filter options:
// 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:
{
  "cursor": "eyJhbGciOiJIUzI1NiJ9.cursor_token"
}

Authentication

OAuth

Connect securely via Gong OAuth. Authorize Humm to access your Gong workspace.