- Overview
- Setup Guide
- Permissions
- Troubleshooting
Gong
Connect Parable to Gong for calls, CRM, meetings, and workspace analytics using HTTP Basic authentication with a workspace-scoped Access Key and Secret.Conversations & CRM
Call recordings, transcripts, CRM associations, meetingsPeople & workspace
Users, workspaces, scorecards, trackers, audit logsGong (OAuth)
Connect Parable to Gong using OAuth 2.0 with Parable’s in-app authorization wizard. You create a Gong OAuth application, register Parable’s redirect URI, set API Base URL under Connection Settings, then authorize from the Provider page. Parable exchanges the authorization code, stores tokens securely, and may update API Base URL from Gong when the token response includes a regional endpoint.You do not paste a refresh token manually.Conversations & CRM
Call recordings, transcripts, CRM associations, meetingsPeople & workspace
Users, workspaces, scorecards, trackers, audit logsGong (OAuth)
Authorize (browser redirect):GET https://app.gong.io/oauth2/authorize
POST https://app.gong.io/oauth2/generate-customer-token
client_secret_basic (HTTP Basic with client ID and secret).Data streams
This Provider Plugin defines 20 data streams.| Stream | Description | Sync |
|---|---|---|
calls | List all calls by date range from Gong. Returns basic call metadata including call ID, title, scheduled time, duration, direction, and participants. | incremental |
calls_extensive | Retrieve detailed/extensive call data from Gong including topics, trackers, parties, key points, highlights, and other rich content fields. Uses POST with filter and content selector. | incremental |
call_transcripts | Retrieve call transcripts from Gong. Returns transcript segments with speaker identification, timestamps, and text for each call. NOTE: Gong does not expose a per-transcript modified timestamp; the watermark is the run window’s end (fromDateTime), not a record-level cursor. Re-running an overlapping window refetches transcripts (PK = callId). Bronze stores every run as a new partition; downstream Silver/Gold layers are responsible for dedup-on-callId-keep-latest. | incremental |
users | List all Gong users in the organization. Returns user profiles including name, email, role, and activity status. | full |
user_settings_history | Retrieve the settings change history for each Gong user. Returns historical records of user settings changes over time, useful for tracking configuration changes and compliance auditing. This is a child endpoint of users — it iterates over all users and fetches settings history for each one via GET /v2/users//settings-history. | full |
scorecards | Retrieve all scorecard definitions/settings from Gong. Returns scorecard templates with their questions and scoring criteria. | full |
answered_scorecards | Retrieve answered/completed scorecards for calls within a date range. Returns scorecard responses with scores, answers, and reviewer information. | incremental |
trackers | Retrieve all keyword tracker definitions from Gong. Returns tracker configurations including keywords, phrases, and associated settings. | full |
workspaces | List all company workspaces in Gong. Returns workspace definitions with names and configuration. | full |
library_folders | List all public library folders in Gong. Returns folder hierarchy for organizing call recordings. | full |
logs | List log entries from Gong by type and time range. Returns audit/activity log entries for compliance and monitoring. | incremental |
manual_crm_associations | List calls that have been manually associated with CRM objects since a given time. Returns association mappings between calls and CRM entities. | incremental |
daily_activity | Retrieve day-by-day activity statistics for users. Returns one row per user (with a dayActivity array) snapshotting the configured incremental window. NOTE: snapshot semantics — PK = userId; rerunning with an overlapping window emits a fresh snapshot row per user for that window. Bronze appends every run as a new partition; Silver/Gold are responsible for dedup-on-userId-keep-latest. cursorField is fromDate, the window-start filter sent in the request body, since aggregate responses have no per-record timestamp. | incremental |
interaction_stats | Retrieves interaction statistics for users including coaching and whisper call metrics. Provides data on manager-rep interaction patterns. | incremental |
crm_entities | DISABLED: Gong has no list CRM entities API. GET /v2/crm/entities only fetches objects by known CRM IDs (dev verification). Use calls_extensive (Extended context) and manual_crm_associations for CRM data. Enable only for explicit ID-based enrichment follow-ups. | full |
meetings | DISABLED: Gong has no list meetings API. Meeting metadata (meetingUrl, calendarEventId, schedule) is available on calls and calls_extensive. Enable only if a future Gong list endpoint is added. | incremental |
activity_aggregate | Retrieve aggregated user activity statistics from Gong. Returns one row per user summarising the configured incremental window. NOTE: snapshot semantics — PK = userId; rerunning with an overlapping window emits a fresh snapshot row per user for that window. Bronze appends every run as a new partition; Silver/Gold are responsible for dedup-on-userId-keep-latest. cursorField is fromDate, the window-start filter sent in the request body. | incremental |
activity_aggregate_by_period | Retrieve user activity statistics aggregated by time period from Gong. Same metrics as activity_aggregate broken down by configurable time buckets. NOTE: snapshot semantics — PK = userId; rerunning with an overlapping window emits a fresh snapshot row per user for that window. Bronze appends every run as a new partition; Silver/Gold are responsible for dedup-on-userId-keep-latest. cursorField is fromDate, the window-start filter sent in the request body. | incremental |
permission_profiles | Retrieve all permission profiles from Gong for each workspace. Returns workspace permission profiles including profile IDs, names, and access settings. | full |
crm_integrations | Retrieve CRM integration configuration from Gong. Returns details about connected CRM systems, schema fields, deal stages, and object mappings. | full |
Gong
What You’ll Need
| Credential | What it is |
|---|---|
| Access Key | Workspace API access key from Gong |
| Access Key Secret | Secret shown once when the key is created |
| API Base URL | Gong API host (https://api.gong.io or your regional URL from Company Settings) |
Info: Setup access in Gong. These steps require Technical Administrator (to create API keys and manage scopes), or a colleague with equivalent permissions who can create credentials for you. If that is not you, ask your Gong administrator.
- Your Gong API Base URL. Most workspaces use
https://api.gong.io. Regional endpoints (for examplehttps://us-12345.api.gong.io) appear under Company Settings → Ecosystem → API.
Info: Gong API keys are workspace-scoped. They can expire; Gong notifies workspace admins before rotation.
Step 1: Open Gong API settings
- Sign in to Gong as a Technical Administrator.
- Open Company Settings → Ecosystem → API (or go to app.gong.io/company/api).
Step 2: Enable required API scopes
Each API key in Gong has scopes toggled individually. Enable only the scopes for the data categories you want Parable to collect.| Scope | Purpose |
|---|---|
api:calls:read:basic | Call recordings |
api:calls:read:extensive | Call details & AI insights |
api:calls:read:transcript | Call transcripts |
api:users:read | Users & settings history |
api:settings:scorecards:read | Scorecard definitions |
api:stats:scorecards | Scorecard responses |
api:settings:trackers:read | Tracker definitions |
api:workspaces:read | Workspaces & library folders |
api:logs:read | Audit logs |
api:crm-calls:manual-association:read | CRM call associations |
api:stats:user-actions:detailed | Daily user activity |
api:stats:interaction | Interaction statistics |
api:stats:user-actions | Activity aggregates |
api:crm:get-objects | CRM entities (Accounts, Contacts, Deals) |
api:meetings:integration:status | Meetings |
api:permission-profile:read | Permission profiles |
api:crm:integrations:read | CRM integrations |
Info: api:permission-profile:read may need to be enabled by Gong Support on some tiers.
Step 3: Create API credentials
- Click Get API Key.
- Copy the Access Key and Access Key Secret. The secret is shown once — store it in a password manager before closing the page.
Warning: Copy your Access Key Secret now! This is the only time it will be displayed. Store it in a secure password manager before closing this page.
Step 4: Enter values in the form
- Access Key, Access Key Secret, and API Base URL: Enter the values from Gong (use your regional base URL if applicable).
- Click Save & test connection.
read -rs -p "Access Key: " GONG_KEY && echo
read -rs -p "Access Key Secret: " GONG_SECRET && echo
read -p "API Base URL [https://api.gong.io]: " GONG_BASE_URL
GONG_BASE_URL="${GONG_BASE_URL:-https://api.gong.io}"
curl --silent --user "${GONG_KEY}:${GONG_SECRET}" \
"${GONG_BASE_URL}/v2/workspaces"
unset GONG_KEY GONG_SECRET GONG_BASE_URL
Success: Success! If you received a 200 OK response with valid data, your credentials are configured correctly. You can now configure this Provider in Parable.
Tip: A successful response includesrequestId,records, and aworkspacesarray. Prefercurl --netrc-fileovercurl -u "KEY:SECRET"for one-liners so credentials are not written to shell history.
Tip: Rate Limits: Gong enforces rate limits of about 3 requests/second and 10,000 requests per day; Parable respects Retry-After. Parable handles rate limiting automatically with exponential backoff, but initial syncs of large datasets may take longer due to these limits.
Gong (OAuth)
What You’ll Need
| Credential | What it is |
|---|---|
| Client ID | OAuth application client ID from Gong |
| Client Secret | OAuth application client secret |
| API Base URL | Gong API host. Default https://api.gong.io; use your regional URL when Gong provides one |
Info: Setup access in Gong. These steps require Technical Administrator (to create OAuth applications and manage scopes), or a colleague with equivalent permissions who can create credentials for you. If that is not you, ask your Gong administrator.
- A Gong OAuth application with the API scopes you need enabled
- Permission to register redirect URIs on that OAuth application
- Your Gong API Base URL. Most workspaces use
https://api.gong.io. Regional endpoints (for examplehttps://us-12345.api.gong.io) appear under Gong Settings → Technical Settings → API Authentication.
Step 1: Create a Gong OAuth application
- Sign in to Gong as a Technical Administrator.
- Open Company Settings → Ecosystem → API.
- Select the Integrations tab.
- Create an OAuth application and note the Client ID and Client Secret.
Step 2: Enable required API scopes
Each OAuth application in Gong has scopes toggled individually. Enable only the scopes for the data categories you want Parable to collect.| Scope | Purpose |
|---|---|
api:calls:read:basic | Call recordings |
api:calls:read:extensive | Call details & AI insights |
api:calls:read:transcript | Call transcripts |
api:users:read | Users & settings history |
api:settings:scorecards:read | Scorecard definitions |
api:stats:scorecards | Scorecard responses |
api:settings:trackers:read | Tracker definitions |
api:workspaces:read | Workspaces & library folders |
api:logs:read | Audit logs |
api:crm-calls:manual-association:read | CRM call associations |
api:stats:user-actions:detailed | Daily user activity |
api:stats:interaction | Interaction statistics |
api:stats:user-actions | Activity aggregates |
api:crm:get-objects | CRM entities (Accounts, Contacts, Deals) |
api:meetings:integration:status | Meetings |
api:permission-profile:read | Permission profiles |
api:crm:integrations:read | CRM integrations |
Info: api:permission-profile:read may need to be enabled by Gong Support on some tiers.
Step 3: Create the connection in Parable
- Open the Gong OAuth Provider in Parable and click to add a connection.
- Enter a connection name.
- Under Connection Settings, set API Base URL. Leave the default (
https://api.gong.io) unless Gong shows a regional endpoint (for examplehttps://us-12345.api.gong.io). - Copy the Redirect URI shown on the form.
- Click Continue to OAuth setup.
Step 4: Register the redirect URI in Gong
- In your Gong OAuth application settings, add the Redirect URI you copied from Parable as an allowed redirect URI.
- Register it exactly as shown (including your workspace subdomain and path).
Info: The redirect URI includes your workspace subdomain. Example:https://{tenant-name}.parable.work/platform/providers/oauth/callback. Do not register the apex host alone (https://parable.work/...). Gong must match the subdomain of the workspace where you started the connection.
Step 5: Authorize with Parable
- On the OAuth authorization screen, enter your Client ID and Client Secret.
- Click Connect with OAuth. You are redirected to Gong to approve permissions.
- After you approve, Parable redirects back automatically, stores your tokens, and validates the connection. If Gong returns a regional API host in the token response, Parable updates API Base URL on the connection.
Info: Parable validates credentials automatically after authorization. You do not paste a refresh token, and there is no separate Save & test connection step on the OAuth authorization screen.To rotate credentials later, click Re-authorize with OAuth on the connection page.Parable shows API Base URL under Connection Settings on the Gong OAuth create and connection forms (default
https://api.gong.io). Syncs use this value as the Gong API host. After OAuth completes, if Gong returns a regional host with the tokens, Parable updates the same setting.| Value | When to use |
|---|---|
https://api.gong.io | Default for most Gong accounts |
https://us-12345.api.gong.io (example) | Regional host shown in Gong Settings → Technical Settings → API Authentication |
Gong
| Scope | Purpose |
|---|---|
api:calls:read:basic | Call recordings |
api:calls:read:extensive | Call details & AI insights |
api:calls:read:transcript | Call transcripts |
api:users:read | Users & settings history |
api:settings:scorecards:read | Scorecard definitions |
api:stats:scorecards | Scorecard responses |
api:settings:trackers:read | Tracker definitions |
api:workspaces:read | Workspaces & library folders |
api:logs:read | Audit logs |
api:crm-calls:manual-association:read | CRM call associations |
api:stats:user-actions:detailed | Daily user activity |
api:stats:interaction | Interaction statistics |
api:stats:user-actions | Activity aggregates |
api:crm:get-objects | CRM entities (Accounts, Contacts, Deals) |
api:meetings:integration:status | Meetings |
api:permission-profile:read | Permission profiles |
api:crm:integrations:read | CRM integrations |
Gong (OAuth)
| Scope | Purpose |
|---|---|
api:calls:read:basic | Call recordings |
api:calls:read:extensive | Call details & AI insights |
api:calls:read:transcript | Call transcripts |
api:users:read | Users & settings history |
api:settings:scorecards:read | Scorecard definitions |
api:stats:scorecards | Scorecard responses |
api:settings:trackers:read | Tracker definitions |
api:workspaces:read | Workspaces & library folders |
api:logs:read | Audit logs |
api:crm-calls:manual-association:read | CRM call associations |
api:stats:user-actions:detailed | Daily user activity |
api:stats:interaction | Interaction statistics |
api:stats:user-actions | Activity aggregates |
api:crm:get-objects | CRM entities (Accounts, Contacts, Deals) |
api:meetings:integration:status | Meetings |
api:permission-profile:read | Permission profiles |
api:crm:integrations:read | CRM integrations |
Info: api:permission-profile:read may need to be enabled by Gong Support on some tiers.
Success: After authorization, Parable shows an authorized status and validates the connection automatically.
Tip: Rate Limits: Gong enforces rate limits of about 3 requests per second; Parable respects Retry-After. Parable handles rate limiting automatically with exponential backoff, but initial syncs of large datasets may take longer due to these limits.
Activity Aggregate
Activity Aggregate
activity_aggregateActivity Aggregate. Retrieve aggregated user activity statistics from Gong. Returns one row per user summarising the configured incremental window. cursorField is fromDate, the window-start filter sent in the request body.- Enables: Measure each user’s provider-reported aggregate activity counts across the configured request window.
- Scope: Reads the records selected by Gong API’s
/{apiVersion}/stats/activity/aggregateoperation as a snapshot stream using incremental synchronization. Visibility follows the Gong API credential, workspace access, and the endpoint’s content-selection settings. Aggregate activity counts reflect Gong’s definitions and the configured request window; they do not establish work quality or employee performance. This stream supplies no reliable deletion signal.
User Aggregate Activity Stats
User Aggregate Activity Stats
activity_aggregate.userAggregateActivityStatsUser Aggregate Activity Stats. Aggregated activity counts for the user over the window. It preserves the nested context needed to interpret the parent activity aggregate.- Enables: Attribute user aggregate activity stats in
activity_aggregate.userAggregateActivityStatsto the parent activity aggregate; identify parent records where that nested user aggregate activity stats object is absent. - Interpretation: Gong API reports user aggregate activity stats as a nested object on each activity aggregate; optional children may be absent from a valid response.
Calls As Host
Calls As Host
activity_aggregate.userAggregateActivityStats.callsAsHostCalls As Host. Total calls as host. It supplies the calls as host measure for the user aggregate activity stat at the provider’s declared unit and grain.- Enables: Measure calls as host through
activity_aggregate.userAggregateActivityStats.callsAsHostfor each user aggregate activity stat and compare only values with the same unit and record grain. - Interpretation: Gong API reports calls as host as a measure on each user aggregate activity stat; compare only records with the same unit and aggregation grain.
Calls Attended
Calls Attended
activity_aggregate.userAggregateActivityStats.callsAttendedCalls Attended. Total calls attended. It supplies the calls attended measure for the user aggregate activity stat at the provider’s declared unit and grain.- Enables: Measure calls attended through
activity_aggregate.userAggregateActivityStats.callsAttendedfor each user aggregate activity stat and compare only values with the same unit and record grain. - Interpretation: Gong API reports calls attended as a measure on each user aggregate activity stat; compare only records with the same unit and aggregation grain.
Calls Comments Given
Calls Comments Given
activity_aggregate.userAggregateActivityStats.callsCommentsGivenCalls Comments Given. Total comments given. It supplies the calls comments given measure for the user aggregate activity stat at the provider’s declared unit and grain.- Enables: Measure calls comments given through
activity_aggregate.userAggregateActivityStats.callsCommentsGivenfor each user aggregate activity stat and compare only values with the same unit and record grain. - Interpretation: Gong API reports calls comments given as a measure on each user aggregate activity stat; compare only records with the same unit and aggregation grain.
Calls Comments Received
Calls Comments Received
activity_aggregate.userAggregateActivityStats.callsCommentsReceivedCalls Comments Received. Total comments received. It supplies the calls comments received measure for the user aggregate activity stat at the provider’s declared unit and grain.- Enables: Measure calls comments received through
activity_aggregate.userAggregateActivityStats.callsCommentsReceivedfor each user aggregate activity stat and compare only values with the same unit and record grain. - Interpretation: Gong API reports calls comments received as a measure on each user aggregate activity stat; compare only records with the same unit and aggregation grain.
Calls Gave Feedback
Calls Gave Feedback
activity_aggregate.userAggregateActivityStats.callsGaveFeedbackCalls Gave Feedback. Total calls where the user gave feedback. It supplies the calls gave feedback measure for the user aggregate activity stat at the provider’s declared unit and grain.- Enables: Measure calls gave feedback through
activity_aggregate.userAggregateActivityStats.callsGaveFeedbackfor each user aggregate activity stat and compare only values with the same unit and record grain. - Interpretation: Gong API reports calls gave feedback as a measure on each user aggregate activity stat; compare only records with the same unit and aggregation grain.
Calls Marked As Feedback Given
Calls Marked As Feedback Given
activity_aggregate.userAggregateActivityStats.callsMarkedAsFeedbackGivenCalls Marked As Feedback Given. Total calls marked as feedback given. It supplies the calls marked as feedback given measure for the user aggregate activity stat at the provider’s declared unit and grain.- Enables: Measure calls marked as feedback given through
activity_aggregate.userAggregateActivityStats.callsMarkedAsFeedbackGivenfor each user aggregate activity stat and compare only values with the same unit and record grain. - Interpretation: Gong API reports calls marked as feedback given as a measure on each user aggregate activity stat; compare only records with the same unit and aggregation grain.
Calls Marked As Feedback Received
Calls Marked As Feedback Received
activity_aggregate.userAggregateActivityStats.callsMarkedAsFeedbackReceivedCalls Marked As Feedback Received. Total calls marked as feedback received. It supplies the calls marked as feedback received measure for the user aggregate activity stat at the provider’s declared unit and grain.- Enables: Measure calls marked as feedback received through
activity_aggregate.userAggregateActivityStats.callsMarkedAsFeedbackReceivedfor each user aggregate activity stat and compare only values with the same unit and record grain. - Interpretation: Gong API reports calls marked as feedback received as a measure on each user aggregate activity stat; compare only records with the same unit and aggregation grain.
Calls Received Feedback
Calls Received Feedback
activity_aggregate.userAggregateActivityStats.callsReceivedFeedbackCalls Received Feedback. Total calls where the user received feedback. It supplies the calls received feedback measure for the user aggregate activity stat at the provider’s declared unit and grain.- Enables: Measure calls received feedback through
activity_aggregate.userAggregateActivityStats.callsReceivedFeedbackfor each user aggregate activity stat and compare only values with the same unit and record grain. - Interpretation: Gong API reports calls received feedback as a measure on each user aggregate activity stat; compare only records with the same unit and aggregation grain.
Calls Requested Feedback
Calls Requested Feedback
activity_aggregate.userAggregateActivityStats.callsRequestedFeedbackCalls Requested Feedback. Total calls where the user requested feedback. It supplies the calls requested feedback measure for the user aggregate activity stat at the provider’s declared unit and grain.- Enables: Measure calls requested feedback through
activity_aggregate.userAggregateActivityStats.callsRequestedFeedbackfor each user aggregate activity stat and compare only values with the same unit and record grain. - Interpretation: Gong API reports calls requested feedback as a measure on each user aggregate activity stat; compare only records with the same unit and aggregation grain.
Calls Scorecards Filled
Calls Scorecards Filled
activity_aggregate.userAggregateActivityStats.callsScorecardsFilledCalls Scorecards Filled. Total scorecards filled. It supplies the calls scorecards filled measure for the user aggregate activity stat at the provider’s declared unit and grain.- Enables: Measure calls scorecards filled through
activity_aggregate.userAggregateActivityStats.callsScorecardsFilledfor each user aggregate activity stat and compare only values with the same unit and record grain. - Interpretation: Gong API reports calls scorecards filled as a measure on each user aggregate activity stat; compare only records with the same unit and aggregation grain.
Calls Scorecards Received
Calls Scorecards Received
activity_aggregate.userAggregateActivityStats.callsScorecardsReceivedCalls Scorecards Received. Total scorecards received. It supplies the calls scorecards received measure for the user aggregate activity stat at the provider’s declared unit and grain.- Enables: Measure calls scorecards received through
activity_aggregate.userAggregateActivityStats.callsScorecardsReceivedfor each user aggregate activity stat and compare only values with the same unit and record grain. - Interpretation: Gong API reports calls scorecards received as a measure on each user aggregate activity stat; compare only records with the same unit and aggregation grain.
Calls Shared Externally
Calls Shared Externally
activity_aggregate.userAggregateActivityStats.callsSharedExternallyCalls Shared Externally. Total calls shared externally. It supplies the calls shared externally measure for the user aggregate activity stat at the provider’s declared unit and grain.- Enables: Measure calls shared externally through
activity_aggregate.userAggregateActivityStats.callsSharedExternallyfor each user aggregate activity stat and compare only values with the same unit and record grain. - Interpretation: Gong API reports calls shared externally as a measure on each user aggregate activity stat; compare only records with the same unit and aggregation grain.
Calls Shared Internally
Calls Shared Internally
activity_aggregate.userAggregateActivityStats.callsSharedInternallyCalls Shared Internally. Total calls shared internally. It supplies the calls shared internally measure for the user aggregate activity stat at the provider’s declared unit and grain.- Enables: Measure calls shared internally through
activity_aggregate.userAggregateActivityStats.callsSharedInternallyfor each user aggregate activity stat and compare only values with the same unit and record grain. - Interpretation: Gong API reports calls shared internally as a measure on each user aggregate activity stat; compare only records with the same unit and aggregation grain.
Others Calls Listened To
Others Calls Listened To
activity_aggregate.userAggregateActivityStats.othersCallsListenedToOthers Calls Listened To. Total others’ calls listened to. It supplies the others calls listened to measure for the user aggregate activity stat at the provider’s declared unit and grain.- Enables: Measure others calls listened to through
activity_aggregate.userAggregateActivityStats.othersCallsListenedTofor each user aggregate activity stat and compare only values with the same unit and record grain. - Interpretation: Gong API reports others calls listened to as a measure on each user aggregate activity stat; compare only records with the same unit and aggregation grain.
Own Calls Listened To
Own Calls Listened To
activity_aggregate.userAggregateActivityStats.ownCallsListenedToOwn Calls Listened To. Total own calls listened to. It supplies the own calls listened to measure for the user aggregate activity stat at the provider’s declared unit and grain.- Enables: Measure own calls listened to through
activity_aggregate.userAggregateActivityStats.ownCallsListenedTofor each user aggregate activity stat and compare only values with the same unit and record grain. - Interpretation: Gong API reports own calls listened to as a measure on each user aggregate activity stat; compare only records with the same unit and aggregation grain.
User Email Address
User Email Address
activity_aggregate.userEmailAddressUser Email Address. Email address of the user. It supplies the provider-reported address or location facet for the activity aggregate, not a residency determination.- Enables: Attribute each activity aggregate to a person or account by the exact user email address in
activity_aggregate.userEmailAddress; identify addresses that do not match the Gong API directory. - Interpretation: Gong API reports user email address as an address on each activity aggregate; aliases, casing, and unverified addresses can prevent a one-to-one person match.
User ID
User ID
activity_aggregate.userIdUser ID. User ID. It provides the reference needed to connect the activity aggregate to the corresponding provider object.- Enables: Match repeated activity aggregate entries on user ID in
activity_aggregate.userId; collapse only entries that share this declared transform key. - Interpretation: Gong API reports user ID as an identifier in its user namespace; it is not a universal identity outside Gong API. The connector explicitly marks this field as a transform deduplication key.
Activity Aggregate By Period
Activity Aggregate By Period
activity_aggregate_by_periodActivity Aggregate By Period. Retrieve user activity statistics aggregated by time period from Gong. Same metrics as activity_aggregate broken down by configurable time buckets. cursorField is fromDate, the window-start filter sent in the request body.- Enables: Compare each user’s provider-reported activity counts across the configured period buckets.
- Scope: Reads the records selected by Gong API’s
/{apiVersion}/stats/activity/aggregate-by-periodoperation as a snapshot stream using incremental synchronization. Visibility follows the Gong API credential, workspace access, and the endpoint’s content-selection settings. Period aggregates reflect Gong’s definitions and requested buckets; they do not establish work quality or employee performance. This stream supplies no reliable deletion signal.
User Aggregate Activity
User Aggregate Activity
activity_aggregate_by_period.userAggregateActivityUser Aggregate Activity. Aggregated activity counts per time period. It preserves the nested context needed to interpret the parent activity aggregate by period.- Enables: Measure each returned user aggregate activity in
activity_aggregate_by_period.userAggregateActivityat its element and time grain; compare values only when Gong API reports the same unit and aggregation. - Interpretation: Gong API returns user aggregate activity as an array of user aggregate activity entries on each activity aggregate by period; missing, empty, and permission-redacted arrays are not equivalent.
Calls As Host
Calls As Host
activity_aggregate_by_period.userAggregateActivity.callsAsHostCalls As Host. Calls as host in period. It supplies the calls as host measure for the user aggregate activity at the provider’s declared unit and grain.- Enables: Measure calls as host through
activity_aggregate_by_period.userAggregateActivity.callsAsHostfor each user aggregate activity and compare only values with the same unit and record grain. - Interpretation: Gong API reports calls as host as a measure on each user aggregate activity; compare only records with the same unit and aggregation grain.
Calls Attended
Calls Attended
activity_aggregate_by_period.userAggregateActivity.callsAttendedCalls Attended. Calls attended in period. It supplies the calls attended measure for the user aggregate activity at the provider’s declared unit and grain.- Enables: Measure calls attended through
activity_aggregate_by_period.userAggregateActivity.callsAttendedfor each user aggregate activity and compare only values with the same unit and record grain. - Interpretation: Gong API reports calls attended as a measure on each user aggregate activity; compare only records with the same unit and aggregation grain.
Calls Comments Given
Calls Comments Given
activity_aggregate_by_period.userAggregateActivity.callsCommentsGivenCalls Comments Given. Comments given in period. It supplies the calls comments given measure for the user aggregate activity at the provider’s declared unit and grain.- Enables: Measure calls comments given through
activity_aggregate_by_period.userAggregateActivity.callsCommentsGivenfor each user aggregate activity and compare only values with the same unit and record grain. - Interpretation: Gong API reports calls comments given as a measure on each user aggregate activity; compare only records with the same unit and aggregation grain.
Calls Comments Received
Calls Comments Received
activity_aggregate_by_period.userAggregateActivity.callsCommentsReceivedCalls Comments Received. Comments received in period. It supplies the calls comments received measure for the user aggregate activity at the provider’s declared unit and grain.- Enables: Measure calls comments received through
activity_aggregate_by_period.userAggregateActivity.callsCommentsReceivedfor each user aggregate activity and compare only values with the same unit and record grain. - Interpretation: Gong API reports calls comments received as a measure on each user aggregate activity; compare only records with the same unit and aggregation grain.
Calls Gave Feedback
Calls Gave Feedback
activity_aggregate_by_period.userAggregateActivity.callsGaveFeedbackCalls Gave Feedback. Calls where the user gave feedback in period. It supplies the calls gave feedback measure for the user aggregate activity at the provider’s declared unit and grain.- Enables: Measure calls gave feedback through
activity_aggregate_by_period.userAggregateActivity.callsGaveFeedbackfor each user aggregate activity and compare only values with the same unit and record grain. - Interpretation: Gong API reports calls gave feedback as a measure on each user aggregate activity; compare only records with the same unit and aggregation grain.
Calls Marked As Feedback Given
Calls Marked As Feedback Given
activity_aggregate_by_period.userAggregateActivity.callsMarkedAsFeedbackGivenCalls Marked As Feedback Given. Calls marked as feedback given in period. It supplies the calls marked as feedback given measure for the user aggregate activity at the provider’s declared unit and grain.- Enables: Measure calls marked as feedback given through
activity_aggregate_by_period.userAggregateActivity.callsMarkedAsFeedbackGivenfor each user aggregate activity and compare only values with the same unit and record grain. - Interpretation: Gong API reports calls marked as feedback given as a measure on each user aggregate activity; compare only records with the same unit and aggregation grain.
Calls Marked As Feedback Received
Calls Marked As Feedback Received
activity_aggregate_by_period.userAggregateActivity.callsMarkedAsFeedbackReceivedCalls Marked As Feedback Received. Calls marked as feedback received in period. It supplies the calls marked as feedback received measure for the user aggregate activity at the provider’s declared unit and grain.- Enables: Measure calls marked as feedback received through
activity_aggregate_by_period.userAggregateActivity.callsMarkedAsFeedbackReceivedfor each user aggregate activity and compare only values with the same unit and record grain. - Interpretation: Gong API reports calls marked as feedback received as a measure on each user aggregate activity; compare only records with the same unit and aggregation grain.
Calls Received Feedback
Calls Received Feedback
activity_aggregate_by_period.userAggregateActivity.callsReceivedFeedbackCalls Received Feedback. Calls where the user received feedback in period. It supplies the calls received feedback measure for the user aggregate activity at the provider’s declared unit and grain.- Enables: Measure calls received feedback through
activity_aggregate_by_period.userAggregateActivity.callsReceivedFeedbackfor each user aggregate activity and compare only values with the same unit and record grain. - Interpretation: Gong API reports calls received feedback as a measure on each user aggregate activity; compare only records with the same unit and aggregation grain.
Calls Requested Feedback
Calls Requested Feedback
activity_aggregate_by_period.userAggregateActivity.callsRequestedFeedbackCalls Requested Feedback. Calls where the user requested feedback in period. It supplies the calls requested feedback measure for the user aggregate activity at the provider’s declared unit and grain.- Enables: Measure calls requested feedback through
activity_aggregate_by_period.userAggregateActivity.callsRequestedFeedbackfor each user aggregate activity and compare only values with the same unit and record grain. - Interpretation: Gong API reports calls requested feedback as a measure on each user aggregate activity; compare only records with the same unit and aggregation grain.
Calls Scorecards Filled
Calls Scorecards Filled
activity_aggregate_by_period.userAggregateActivity.callsScorecardsFilledCalls Scorecards Filled. Scorecards filled in period. It supplies the calls scorecards filled measure for the user aggregate activity at the provider’s declared unit and grain.- Enables: Measure calls scorecards filled through
activity_aggregate_by_period.userAggregateActivity.callsScorecardsFilledfor each user aggregate activity and compare only values with the same unit and record grain. - Interpretation: Gong API reports calls scorecards filled as a measure on each user aggregate activity; compare only records with the same unit and aggregation grain.
Calls Scorecards Received
Calls Scorecards Received
activity_aggregate_by_period.userAggregateActivity.callsScorecardsReceivedCalls Scorecards Received. Scorecards received in period. It supplies the calls scorecards received measure for the user aggregate activity at the provider’s declared unit and grain.- Enables: Measure calls scorecards received through
activity_aggregate_by_period.userAggregateActivity.callsScorecardsReceivedfor each user aggregate activity and compare only values with the same unit and record grain. - Interpretation: Gong API reports calls scorecards received as a measure on each user aggregate activity; compare only records with the same unit and aggregation grain.
Calls Shared Externally
Calls Shared Externally
activity_aggregate_by_period.userAggregateActivity.callsSharedExternallyCalls Shared Externally. Calls shared externally in period. It supplies the calls shared externally measure for the user aggregate activity at the provider’s declared unit and grain.- Enables: Measure calls shared externally through
activity_aggregate_by_period.userAggregateActivity.callsSharedExternallyfor each user aggregate activity and compare only values with the same unit and record grain. - Interpretation: Gong API reports calls shared externally as a measure on each user aggregate activity; compare only records with the same unit and aggregation grain.
Calls Shared Internally
Calls Shared Internally
activity_aggregate_by_period.userAggregateActivity.callsSharedInternallyCalls Shared Internally. Calls shared internally in period. It supplies the calls shared internally measure for the user aggregate activity at the provider’s declared unit and grain.- Enables: Measure calls shared internally through
activity_aggregate_by_period.userAggregateActivity.callsSharedInternallyfor each user aggregate activity and compare only values with the same unit and record grain. - Interpretation: Gong API reports calls shared internally as a measure on each user aggregate activity; compare only records with the same unit and aggregation grain.
From Date
From Date
activity_aggregate_by_period.userAggregateActivity.fromDateFrom Date. Start of the period in ISO-8601. It anchors the activity aggregate by period on the provider’s reported timeline.- Enables: Match repeated user aggregate activity entries on from date in
activity_aggregate_by_period.userAggregateActivity.fromDate; collapse only entries that share this declared transform key. - Interpretation: Gong API reports from date as a timestamp on each user aggregate activity; timezone and precision follow this API field, and absence is not an inferred event time. The connector explicitly marks this field as a transform deduplication key.
Others Calls Listened To
Others Calls Listened To
activity_aggregate_by_period.userAggregateActivity.othersCallsListenedToOthers Calls Listened To. Others’ calls listened to in period. It supplies the others calls listened to measure for the user aggregate activity at the provider’s declared unit and grain.- Enables: Measure others calls listened to through
activity_aggregate_by_period.userAggregateActivity.othersCallsListenedTofor each user aggregate activity and compare only values with the same unit and record grain. - Interpretation: Gong API reports others calls listened to as a measure on each user aggregate activity; compare only records with the same unit and aggregation grain.
Own Calls Listened To
Own Calls Listened To
activity_aggregate_by_period.userAggregateActivity.ownCallsListenedToOwn Calls Listened To. Own calls listened to in period. It supplies the own calls listened to measure for the user aggregate activity at the provider’s declared unit and grain.- Enables: Measure own calls listened to through
activity_aggregate_by_period.userAggregateActivity.ownCallsListenedTofor each user aggregate activity and compare only values with the same unit and record grain. - Interpretation: Gong API reports own calls listened to as a measure on each user aggregate activity; compare only records with the same unit and aggregation grain.
To Date
To Date
activity_aggregate_by_period.userAggregateActivity.toDateTo Date. End of the period in ISO-8601. It anchors the activity aggregate by period on the provider’s reported timeline.- Enables: Order Activity Aggregate By Period by to date in
activity_aggregate_by_period.userAggregateActivity.toDateand isolate records inside an exact provider reporting window. - Interpretation: Gong API reports to date as a timestamp on each user aggregate activity; timezone and precision follow this API field, and absence is not an inferred event time.
User Email Address
User Email Address
activity_aggregate_by_period.userEmailAddressUser Email Address. Email address of the user. It supplies the provider-reported address or location facet for the activity aggregate by period, not a residency determination.- Enables: Attribute each activity aggregate by period to a person or account by the exact user email address in
activity_aggregate_by_period.userEmailAddress; identify addresses that do not match the Gong API directory. - Interpretation: Gong API reports user email address as an address on each activity aggregate by period; aliases, casing, and unverified addresses can prevent a one-to-one person match.
User ID
User ID
activity_aggregate_by_period.userIdUser ID. User ID. It provides the reference needed to connect the activity aggregate by period to the corresponding provider object.- Enables: Match repeated activity aggregate by period entries on user ID in
activity_aggregate_by_period.userId; collapse only entries that share this declared transform key. - Interpretation: Gong API reports user ID as an identifier in its user namespace; it is not a universal identity outside Gong API. The connector explicitly marks this field as a transform deduplication key.
Answered Scorecards
Answered Scorecards
answered_scorecardsAnswered Scorecards. Retrieve answered/completed scorecards for calls within a date range. Returns scorecard responses with scores, answers, and reviewer information.- Enables: Match provider-entered scorecard answers to calls, questions, reviewers, and completion times.
- Scope: Reads the records selected by Gong API’s
/{apiVersion}/stats/activity/scorecardsoperation as an event stream using incremental synchronization. Visibility follows the Gong API credential, workspace access, and the endpoint’s content-selection settings. Answers, scores, and reviewer context are entered or calculated in Gong and must remain within their scorecard and call context. This stream supplies no reliable deletion signal.
Answered Scorecard ID
Answered Scorecard ID
answered_scorecards.answeredScorecardIdAnswered Scorecard ID. Unique identifier. It provides the reference needed to connect the answered scorecard to the corresponding provider object.- Enables: Match repeated answered scorecard entries on answered scorecard ID in
answered_scorecards.answeredScorecardId; collapse only entries that share this declared transform key. - Interpretation: Gong API reports answered scorecard ID as an identifier in its answered scorecard namespace; it is not a universal identity outside Gong API. The connector explicitly marks this field as a transform deduplication key.
Answers
Answers
answered_scorecards.answersAnswers. Answers given for each scorecard question. It preserves the nested context needed to interpret the parent answered scorecard.- Enables: Search the returned answers content in
answered_scorecards.answerswhile preserving element order and attribution to the parent answered scorecard. - Interpretation: Gong API returns answers as ordered content or provider-generated content metadata on each answered scorecard; truncation, omission, and inaccessible source media can limit completeness.
Answer Text
Answer Text
answered_scorecards.answers.answerTextAnswer Text. Free-text answer or numeric score as text. Nullable. It defines the content surface available for this answered scorecard.- Enables: Locate answer records by answer text in
answered_scorecards.answers.answerText; attribute each text match to its parent answered scorecard and, when present, its reported author. - Interpretation: Gong supplies this call content; provider-generated excerpts or summaries may omit context and are not Parable-authored assessments.
Is Overall
Is Overall
answered_scorecards.answers.isOverallIs Overall. The provider-reported is overall for each answer in Answered Scorecards. It distinguishes the provider-defined is overall state or classification for the answer.- Enables: Filter Answered Scorecards by whether is overall in
answered_scorecards.answers.isOverall; count true, false, and missing results separately. - Interpretation: Gong API reports is overall as a boolean on each answer; a missing field is unknown, not false.
Not Applicable
Not Applicable
answered_scorecards.answers.notApplicableNot Applicable. Whether the reviewer marked the question not applicable. It distinguishes the provider-defined not applicable state or classification for the answer.- Enables: Filter Answered Scorecards by whether the reviewer marked the question not applicable in
answered_scorecards.answers.notApplicable; count true, false, and missing results separately. - Interpretation: Gong API reports the reviewer marked the question not applicable as a boolean on each answer; a missing field is unknown, not false.
Question ID
Question ID
answered_scorecards.answers.questionIdQuestion ID. The provider-reported question ID for each answer in Answered Scorecards. It provides the reference needed to connect the answered scorecard to the corresponding provider object.- Enables: Match repeated answer entries on question ID in
answered_scorecards.answers.questionId; collapse only entries that share this declared transform key. - Interpretation: Gong API reports question ID as an identifier in its question namespace; it is not a universal identity outside Gong API. The connector explicitly marks this field as a transform deduplication key.
Question Revision ID
Question Revision ID
answered_scorecards.answers.questionRevisionIdQuestion Revision ID. The provider-reported question revision ID for each answer in Answered Scorecards. It provides the reference needed to connect the answered scorecard to the corresponding provider object.- Enables: Connect each answer in Answered Scorecards to the referenced question revision through
answered_scorecards.answers.questionRevisionId; flag question revision ID values that do not resolve in that provider namespace. - Interpretation: Gong API reports question revision ID as an identifier in its question revision namespace; it is not a universal identity outside Gong API.
Score
Score
answered_scorecards.answers.scoreScore. Numeric score for the question, if applicable. It supplies the returned score text needed to understand the answer in context.- Enables: Search the returned score text in
answered_scorecards.answers.scoreand attribute each match to its parent answered scorecard and reported author when available. - Interpretation: Gong API supplies score as returned text on each answer; truncation, formatting, and access boundaries can limit completeness.
Selected Options
Selected Options
answered_scorecards.answers.selectedOptionsSelected Options. Selected answer options for choice questions. Nullable. It preserves the nested context needed to interpret the parent answered scorecard.- Enables: Compare the exact Gong API-configured selected options set in
answered_scorecards.answers.selectedOptionsfor each answer; preserve provider labels and unknown entries. - Interpretation: Gong API returns selected options as an array of selected option value entries on each answer; missing, empty, and permission-redacted arrays are not equivalent.
Call ID
Call ID
answered_scorecards.callIdCall ID. Call ID that was scored. It provides the reference needed to connect the answered scorecard to the corresponding provider object.- Enables: Connect each answered scorecard in Answered Scorecards to the referenced call through
answered_scorecards.callId; flag call ID values that do not resolve in that provider namespace. - Interpretation: Gong API reports call ID as an identifier in its call namespace; it is not a universal identity outside Gong API.
Call Start Time
Call Start Time
answered_scorecards.callStartTimeCall Start Time. Call start time. It anchors the answered scorecard on the provider’s reported timeline.- Enables: Filter Answered Scorecards by call start time in
answered_scorecards.callStartTime; pair that boundary with the corresponding end before measuring elapsed time. - Interpretation: Gong API reports call start time as a timestamp on each answered scorecard; timezone and precision follow this API field, and absence is not an inferred event time.
Editor User ID
Editor User ID
answered_scorecards.editorUserIdEditor User ID. User who last edited the answered scorecard. Nullable. It provides the reference needed to connect the answered scorecard to the corresponding provider object.- Enables: Connect each answered scorecard in Answered Scorecards to the referenced editor user through
answered_scorecards.editorUserId; flag editor user ID values that do not resolve in that provider namespace. - Interpretation: Gong API reports editor user ID as an identifier in its editor user namespace; it is not a universal identity outside Gong API.
Reviewed User ID
Reviewed User ID
answered_scorecards.reviewedUserIdReviewed User ID. User being reviewed. It provides the reference needed to connect the answered scorecard to the corresponding provider object.- Enables: Connect each answered scorecard in Answered Scorecards to the referenced reviewed user through
answered_scorecards.reviewedUserId; flag reviewed user ID values that do not resolve in that provider namespace. - Interpretation: Gong API reports reviewed user ID as an identifier in its reviewed user namespace; it is not a universal identity outside Gong API.
Reviewer User ID
Reviewer User ID
answered_scorecards.reviewerUserIdReviewer User ID. Reviewer user ID. Null when the scorecard was filled automatically. It provides the reference needed to connect the answered scorecard to the corresponding provider object.- Enables: Connect each answered scorecard in Answered Scorecards to the referenced reviewer user through
answered_scorecards.reviewerUserId; flag reviewer user ID values that do not resolve in that provider namespace. - Interpretation: Gong API reports reviewer user ID as an identifier in its reviewer user namespace; it is not a universal identity outside Gong API.
Review Method
Review Method
answered_scorecards.reviewMethodReview Method. How the scorecard was completed (e.g., MANUAL, AUTOMATIC). It distinguishes the provider-defined review method state or classification for the answered scorecard.- Enables: Filter Answered Scorecards by the exact Gong API-defined review method in
answered_scorecards.reviewMethodand preserve unknown values as distinct categories. - Interpretation: Gong API supplies review method from its own taxonomy on each answered scorecard; preserve unknown and newly introduced labels.
Review Time
Review Time
answered_scorecards.reviewTimeReview Time. Review completion time. It is needed to place the answered scorecard on the provider timeline at the field’s stated precision.- Enables: Order Answered Scorecards by the provider-reported instant in
answered_scorecards.reviewTimeand isolate records inside the same time window and precision. - Interpretation: Gong API reports review time as a time value for each answered scorecard; format, timezone, precision, and absolute-versus-relative meaning follow this field’s contract. A connector directive uses this field to order records for latest-state or incremental processing. The schema designates this field as the event timestamp.
Scorecard ID
Scorecard ID
answered_scorecards.scorecardIdScorecard ID. Scorecard template ID. It provides the reference needed to connect the answered scorecard to the corresponding provider object.- Enables: Connect each answered scorecard in Answered Scorecards to the referenced scorecard through
answered_scorecards.scorecardId; flag scorecard ID values that do not resolve in that provider namespace. - Interpretation: Gong API reports scorecard ID as an identifier in its scorecard namespace; it is not a universal identity outside Gong API.
Scorecard Name
Scorecard Name
answered_scorecards.scorecardNameScorecard Name. Scorecard name. It gives the answered scorecard a human-readable provider label while its identifier remains the stable reference.- Enables: Label each answered scorecard with scorecard name from
answered_scorecards.scorecardName; distinguish records that share that display name but have different Gong API identifiers. - Interpretation: Gong API reports scorecard name as display text for each answered scorecard; names are mutable and are not stable identities.
Visibility Type
Visibility Type
answered_scorecards.visibilityTypeVisibility Type. Visibility setting. It distinguishes the provider-defined visibility type state or classification for the answered scorecard.- Enables: Segment answered scorecard entries in Answered Scorecards by visibility type in
answered_scorecards.visibilityType; compare counts only within the same Gong API taxonomy. - Interpretation: Gong API reports visibility type as a label from its own taxonomy on each answered scorecard; preserve unknown labels rather than mapping them by assumption.
Call Transcripts
Call Transcripts
call_transcriptsCall Transcripts. Retrieve call transcripts from Gong. Returns transcript segments with speaker identification, timestamps, and text for each call. Gong does not expose a per-transcript modified timestamp, so the plan’s request window supplies fromDateTime and toDateTime.- Enables: Locate transcript sentences by call, speaker, and offset for conversation review.
- Scope: Reads the records selected by Gong API’s
/{apiVersion}/calls/transcriptoperation as an event stream using incremental synchronization. Visibility follows the Gong API credential, workspace access, and the endpoint’s content-selection settings. The stream contains provider transcript text with speaker labels and offsets, not recording audio or video. This stream supplies no reliable deletion signal.
Call ID
Call ID
call_transcripts.callIdCall ID. Unique identifier of the call. It provides the reference needed to connect the call transcript to the corresponding provider object.- Enables: Match repeated call transcript entries on call ID in
call_transcripts.callId; collapse only entries that share this declared transform key. - Interpretation: Gong API reports call ID as an identifier in its call namespace; it is not a universal identity outside Gong API. The connector explicitly marks this field as a transform deduplication key.
Transcript
Transcript
call_transcripts.transcriptTranscript. Array of transcript segments. It preserves the nested context needed to interpret the parent call transcript.- Enables: Reconstruct the returned transcript in
call_transcripts.transcriptby preserving sentence order, speaker attribution, and call-relative offsets for the parent call transcript. - Interpretation: Gong API returns transcript as ordered content or provider-generated content metadata on each call transcript; truncation, omission, and inaccessible source media can limit completeness.
Sentences
Sentences
call_transcripts.transcript.sentencesSentences. The provider-returned sentences collection nested under the transcript structure for each call transcript; needed to retain every element with its parent relationship.- Enables: Reconstruct the returned transcript in
call_transcripts.transcript.sentencesby preserving sentence order, speaker attribution, and call-relative offsets for the parent call transcript. - Interpretation: Gong API returns sentences as ordered content or provider-generated content metadata on each transcript; truncation, omission, and inaccessible source media can limit completeness.
End
End
call_transcripts.transcript.sentences.endEnd. End time in ms. It supplies the end measure for the sentence at the provider’s declared unit and grain.- Enables: Order call excerpts by the numeric end in
call_transcripts.transcript.sentences.end; pair start and end positions before calculating a span. - Interpretation: Gong API reports end as milliseconds on each sentence; compare only records with the same unit and aggregation grain. Gong returns a call-relative position in the stated unit; it is not a wall-clock timestamp.
Start
Start
call_transcripts.transcript.sentences.startStart. Start time in ms. It supplies the start measure for the sentence at the provider’s declared unit and grain.- Enables: Order call excerpts by the numeric start in
call_transcripts.transcript.sentences.start; pair start and end positions before calculating a span. - Interpretation: Gong API reports start as milliseconds on each sentence; compare only records with the same unit and aggregation grain. Gong returns a call-relative position in the stated unit; it is not a wall-clock timestamp.
Text
Text
call_transcripts.transcript.sentences.textText. Transcribed text. It defines the content surface available for this call transcript.- Enables: Locate sentence records by text in
call_transcripts.transcript.sentences.text; attribute each text match to its parent call transcript and, when present, its reported author. - Interpretation: This is provider transcript data, not the source audio or video, and speaker attribution can reflect provider labeling limits.
Speaker ID
Speaker ID
call_transcripts.transcript.speakerIdSpeaker ID. Speaker ID. It provides the reference needed to connect the call transcript to the corresponding provider object.- Enables: Match repeated transcript entries on speaker ID in
call_transcripts.transcript.speakerId; collapse only entries that share this declared transform key. - Interpretation: Gong API reports speaker ID as an identifier in its speaker namespace; it is not a universal identity outside Gong API. The connector explicitly marks this field as a transform deduplication key.
Topic
Topic
call_transcripts.transcript.topicTopic. Topic label. It supplies the returned topic text needed to understand the transcript in context.- Enables: Search the returned topic text in
call_transcripts.transcript.topicand attribute each match to its parent call transcript and reported author when available. - Interpretation: Gong API supplies topic as returned text on each transcript; truncation, formatting, and access boundaries can limit completeness. Gong API generated or classified this result; it may be incomplete and is not a Parable-authored judgment.
Calls
Calls
callsCalls. List all calls by date range from Gong. Returns basic call metadata including call ID, title, scheduled time, duration, direction, and participants.- Enables: Inventory Gong call metadata by date range and attribute each call to its participants, direction, and scheduled time.
- Scope: Reads the records selected by Gong API’s
/{apiVersion}/callsoperation as an event stream using incremental synchronization. Visibility follows the Gong API credential, workspace access, and the endpoint’s content-selection settings. The stream contains basic call metadata, not transcript text, recordings, or the richer provider-generated content from the extensive-call operation. This stream supplies no reliable deletion signal.
Calendar Event ID
Calendar Event ID
calls.calendarEventIdCalendar Event ID. Associated calendar event ID. It provides the reference needed to connect the call to the corresponding provider object.- Enables: Connect each call in Calls to the referenced calendar event through
calls.calendarEventId; flag calendar event ID values that do not resolve in that provider namespace. - Interpretation: Gong API reports calendar event ID as an identifier in its calendar event namespace; it is not a universal identity outside Gong API.
Client Unique ID
Client Unique ID
calls.clientUniqueIdClient Unique ID. Client-provided unique identifier. It provides the reference needed to connect the call to the corresponding provider object.- Enables: Connect each call in Calls to the referenced client unique through
calls.clientUniqueId; flag client unique ID values that do not resolve in that provider namespace. - Interpretation: Gong API reports client unique ID as an identifier in its client unique namespace; it is not a universal identity outside Gong API.
Custom Data
Custom Data
calls.customDataCustom Data. Custom data associated with the call. It must be interpreted with the enclosing provider field name, type, or custom schema for the call.- Enables: Interpret
calls.customDatawith the enclosing custom field name, declared type, and provider schema; compare only records that share that contract. - Interpretation: Gong API reports custom data under the enclosing custom or typed field contract on each call; compare it only with values from the same provider key and type.
Direction
Direction
calls.directionDirection. Direction of the call (Inbound or Outbound). It distinguishes the provider-defined direction state or classification for the call.- Enables: Filter Calls by the exact Gong API-defined direction in
calls.directionand preserve unknown values as distinct categories. - Interpretation: Gong API supplies direction from its own taxonomy on each call; preserve unknown and newly introduced labels.
Duration
Duration
calls.durationDuration. Duration of the call in seconds. It supplies the duration measure for the call at the provider’s declared unit and grain.- Enables: Measure duration through
calls.durationfor each call and compare only values with the same unit and record grain. - Interpretation: Gong API reports duration as a measure on each call; compare only records with the same unit and aggregation grain.
ID
ID
calls.idID. Unique identifier for the call. It provides the reference needed to connect the call to the corresponding provider object.- Enables: Match repeated call entries on ID in
calls.id; collapse only entries that share this declared transform key. - Interpretation: Gong API reports ID as an identifier in its call namespace; it is not a universal identity outside Gong API. The connector explicitly marks this field as a transform deduplication key.
Is Private
Is Private
calls.isPrivateIs Private. Whether the call is private. It distinguishes the provider-defined is private state or classification for the call.- Enables: Filter Calls by whether the call is private in
calls.isPrivate; count true, false, and missing results separately. - Interpretation: Gong API reports the call is private as a boolean on each call; a missing field is unknown, not false.
Language
Language
calls.languageLanguage. Language of the call. It supplies the language profile facet used to reconcile or attribute the call.- Enables: Reconcile the call’s language in
calls.languagewith its provider profile or directory identity; confirm ambiguous matches with the stable provider ID. - Interpretation: Gong API reports language as a mutable profile or directory attribute on each call; it may be absent, shared, or non-unique.
Media
Media
calls.mediaMedia. Media type of the call. It distinguishes the provider-defined media state or classification for the call.- Enables: Filter Calls by the exact Gong API-defined media in
calls.mediaand preserve unknown values as distinct categories. - Interpretation: Gong API supplies media from its own taxonomy on each call; preserve unknown and newly introduced labels.
Meeting URL
Meeting URL
calls.meetingUrlMeeting URL. Meeting URL for the call. It locates the provider resource or path associated with the call.- Enables: Associate each call with the resource identified by meeting URL in
calls.meetingUrl; verify the link resolves to the expected Gong API object. - Interpretation: Gong API reports meeting URL as a resource locator for each call; access still depends on viewer permissions and the URL may expire or change.
Primary User ID
Primary User ID
calls.primaryUserIdPrimary User ID. ID of the primary Gong user associated with the call. It provides the reference needed to connect the call to the corresponding provider object.- Enables: Connect each call in Calls to the referenced primary user through
calls.primaryUserId; flag primary user ID values that do not resolve in that provider namespace. - Interpretation: Gong API reports primary user ID as an identifier in its primary user namespace; it is not a universal identity outside Gong API.
Purpose
Purpose
calls.purposePurpose. Purpose of the call. It supplies the returned purpose text needed to understand the call in context.- Enables: Search the returned purpose text in
calls.purposeand attribute each match to its parent call and reported author when available. - Interpretation: Gong API supplies purpose as returned text on each call; truncation, formatting, and access boundaries can limit completeness.
Scheduled
Scheduled
calls.scheduledScheduled. Scheduled time of the call in ISO-8601 format. It is needed to place the call on the provider timeline at the field’s stated precision.- Enables: Order Calls by the provider-reported instant in
calls.scheduledand isolate records inside the same time window and precision. - Interpretation: Gong API reports scheduled as a time value for each call; format, timezone, precision, and absolute-versus-relative meaning follow this field’s contract.
Scope
Scope
calls.scopeScope. Scope of the call (Internal/External). It distinguishes the provider-defined scope state or classification for the call.- Enables: Filter Calls by the exact Gong API-defined scope in
calls.scopeand preserve unknown values as distinct categories. - Interpretation: Gong API supplies scope from its own taxonomy on each call; preserve unknown and newly introduced labels.
Sdr Disposition
Sdr Disposition
calls.sdrDispositionSdr Disposition. Sales-development representative disposition tag. It distinguishes the provider-defined sdr disposition state or classification for the call.- Enables: Filter Calls by the exact Gong API-defined sdr disposition in
calls.sdrDispositionand preserve unknown values as distinct categories. - Interpretation: Gong API supplies sdr disposition from its own taxonomy on each call; preserve unknown and newly introduced labels.
Started
Started
calls.startedStarted. Actual start time of the call in ISO-8601 format. It anchors the call on the provider’s reported timeline.- Enables: Order Calls by started in
calls.startedand isolate records inside an exact provider reporting window. - Interpretation: Gong API reports started as a timestamp on each call; timezone and precision follow this API field, and absence is not an inferred event time. A connector directive uses this field to order records for latest-state or incremental processing. The schema designates this field as the event timestamp.
System
System
calls.systemSystem. Telephony or conferencing system used. It distinguishes the provider-defined system state or classification for the call.- Enables: Filter Calls by the exact Gong API-defined system in
calls.systemand preserve unknown values as distinct categories. - Interpretation: Gong API supplies system from its own taxonomy on each call; preserve unknown and newly introduced labels.
Title
Title
calls.titleTitle. Title or subject of the call. It supplies the returned title text needed to understand the call in context.- Enables: Label each call with title from
calls.title; distinguish records that share that display name but have different Gong API identifiers. - Interpretation: Gong API reports title as display text for each call; names are mutable and are not stable identities.
URL
URL
calls.urlURL. URL to view the call in Gong. It locates the provider resource or path associated with the call.- Enables: Associate each call with the resource identified by URL in
calls.url; verify the link resolves to the expected Gong API object. - Interpretation: Gong API reports URL as a resource locator for each call; access still depends on viewer permissions and the URL may expire or change.
Workspace ID
Workspace ID
calls.workspaceIdWorkspace ID. Workspace the call belongs to. It provides the reference needed to connect the call to the corresponding provider object.- Enables: Connect each call in Calls to the referenced workspace through
calls.workspaceId; flag workspace ID values that do not resolve in that provider namespace. - Interpretation: Gong API reports workspace ID as an identifier in its workspace namespace; it is not a universal identity outside Gong API.
Calls Extensive
Calls Extensive
calls_extensiveCalls Extensive. Retrieve detailed/extensive call data from Gong including topics, trackers, parties, key points, highlights, and other rich content fields. Uses POST with filter and content selector.- Enables: Review Gong-provided topics, trackers, highlights, comments, and interaction measures in the context of each call.
- Scope: Reads the records selected by Gong API’s
/{apiVersion}/calls/extensiveoperation as an event stream using incremental synchronization. Visibility follows the Gong API credential, workspace access, and the endpoint’s content-selection settings. Gong supplies topics, trackers, highlights, summaries, and classifications; they may be incomplete and are not independent Parable assessments. Transcript text and recording bytes are not part of this operation. This stream supplies no reliable deletion signal.
Collaboration
Collaboration
calls_extensive.collaborationCollaboration. Collaboration data (public comments) on the call. It preserves the nested context needed to interpret the parent extensive call.- Enables: Attribute collaboration in
calls_extensive.collaborationto the parent extensive call; identify parent records where that nested collaboration object is absent. - Interpretation: Gong API reports collaboration as a nested object on each extensive call; optional children may be absent from a valid response.
Public Comments
Public Comments
calls_extensive.collaboration.publicCommentsPublic Comments. The provider-returned public comments collection nested under the collaboration structure for each extensive call; needed to retain every element with its parent relationship.- Enables: Search the returned public comments content in
calls_extensive.collaboration.publicCommentswhile preserving element order and attribution to the parent extensive call. - Interpretation: Gong API returns public comments as ordered content or provider-generated content metadata on each collaboration; truncation, omission, and inaccessible source media can limit completeness.
Audio End Time
Audio End Time
calls_extensive.collaboration.publicComments.audioEndTimeAudio End Time. The provider-reported audio end time for each public comment in extensive call. It supplies the audio end time measure for the public comment at the provider’s declared unit and grain.- Enables: Order call excerpts by the numeric audio end time in
calls_extensive.collaboration.publicComments.audioEndTime; pair start and end positions before calculating a span. - Interpretation: Gong API reports audio end time as a number at the parent record’s grain on each public comment; compare only records with the same unit and aggregation grain. Gong returns a numeric call-relative position here, but this declaration does not state a unit; do not interpret it as a wall-clock timestamp.
Audio Start Time
Audio Start Time
calls_extensive.collaboration.publicComments.audioStartTimeAudio Start Time. The provider-reported audio start time for each public comment in extensive call. It supplies the audio start time measure for the public comment at the provider’s declared unit and grain.- Enables: Order call excerpts by the numeric audio start time in
calls_extensive.collaboration.publicComments.audioStartTime; pair start and end positions before calculating a span. - Interpretation: Gong API reports audio start time as a number at the parent record’s grain on each public comment; compare only records with the same unit and aggregation grain. Gong returns a numeric call-relative position here, but this declaration does not state a unit; do not interpret it as a wall-clock timestamp.
Comment
Comment
calls_extensive.collaboration.publicComments.commentComment. The provider-reported comment for each public comment in extensive call. It defines the content surface available for this extensive call.- Enables: Locate public comment records by comment in
calls_extensive.collaboration.publicComments.comment; attribute each text match to its parent extensive call and, when present, its reported author. - Interpretation: Gong supplies this call content; provider-generated excerpts or summaries may omit context and are not Parable-authored assessments.
Commenter User ID
Commenter User ID
calls_extensive.collaboration.publicComments.commenterUserIdCommenter User ID. The provider-reported commenter user ID for each public comment in extensive call. It provides the reference needed to connect the extensive call to the corresponding provider object.- Enables: Connect each public comment in extensive call to the referenced commenter user through
calls_extensive.collaboration.publicComments.commenterUserId; flag commenter user ID values that do not resolve in that provider namespace. - Interpretation: Gong API reports commenter user ID as an identifier in its commenter user namespace; it is not a universal identity outside Gong API.
During Call
During Call
calls_extensive.collaboration.publicComments.duringCallDuring Call. The provider-reported during call for each public comment in extensive call. It distinguishes the provider-defined during call state or classification for the public comment.- Enables: Filter extensive call by whether during call in
calls_extensive.collaboration.publicComments.duringCall; count true, false, and missing results separately. - Interpretation: Gong API reports during call as a boolean on each public comment; a missing field is unknown, not false.
ID
ID
calls_extensive.collaboration.publicComments.idID. The provider-reported ID for each public comment in extensive call. It provides the reference needed to connect the extensive call to the corresponding provider object.- Enables: Connect each public comment in extensive call to the referenced public comment through
calls_extensive.collaboration.publicComments.id; flag ID values that do not resolve in that provider namespace. - Interpretation: Gong API reports ID as an identifier in its public comment namespace; it is not a universal identity outside Gong API.
In Reply To
In Reply To
calls_extensive.collaboration.publicComments.inReplyToIn Reply To. The provider-reported in reply to for each public comment in extensive call. It identifies the related provider object that gives the public comment its parent, owner, or container context.- Enables: Connect each public comment to the related in reply to in
calls_extensive.collaboration.publicComments.inReplyToand verify that the referenced provider object resolves in the expected parent or container. - Interpretation: Gong API reports in reply to as relationship context on each public comment; resolve it in the named provider namespace rather than by display text alone.
Posted
Posted
calls_extensive.collaboration.publicComments.postedPosted. ISO-8601 timestamp. It is needed to place the public comment on the provider timeline at the field’s stated precision.- Enables: Order Calls Extensive by the provider-reported instant in
calls_extensive.collaboration.publicComments.postedand isolate records inside the same time window and precision. - Interpretation: Gong API reports posted as a time value for each public comment; format, timezone, precision, and absolute-versus-relative meaning follow this field’s contract.
Content
Content
calls_extensive.contentContent. Rich content for the call (topics, trackers, brief, highlights, etc.). It preserves the nested context needed to interpret the parent extensive call.- Enables: Attribute content in
calls_extensive.contentto the parent extensive call; identify parent records where that nested content object is absent. - Interpretation: Gong API reports content as a nested object on each extensive call; optional children may be absent from a valid response. Gong API generated or classified this result; it may be incomplete and is not a Parable-authored judgment.
Brief
Brief
calls_extensive.content.briefBrief. AI-generated brief summary of the call. It defines the content surface available for this extensive call.- Enables: Locate content records by brief in
calls_extensive.content.brief; attribute each text match to its parent extensive call and, when present, its reported author. - Interpretation: Gong supplies this call content; provider-generated excerpts or summaries may omit context and are not Parable-authored assessments. Gong API generated or classified this result; it may be incomplete and is not a Parable-authored judgment.
Call Outcome
Call Outcome
calls_extensive.content.callOutcomeCall Outcome. The structured call outcome details attached to each content in extensive call. It preserves the nested context needed to interpret the parent extensive call.- Enables: Attribute call outcome in
calls_extensive.content.callOutcometo the parent extensive call; identify parent records where that nested call outcome object is absent. - Interpretation: Gong API reports call outcome as a nested object on each content; optional children may be absent from a valid response.
Category
Category
calls_extensive.content.callOutcome.categoryCategory. The provider-reported category for each call outcome in extensive call. It distinguishes the provider-defined category state or classification for the call outcome.- Enables: Segment call outcome entries in extensive call by category in
calls_extensive.content.callOutcome.category; compare counts only within the same Gong API taxonomy. - Interpretation: Gong API reports category as a label from its own taxonomy on each call outcome; preserve unknown labels rather than mapping them by assumption. Gong API generated or classified this result; it may be incomplete and is not a Parable-authored judgment.
ID
ID
calls_extensive.content.callOutcome.idID. The provider-reported ID for each call outcome in extensive call. It provides the reference needed to connect the extensive call to the corresponding provider object.- Enables: Connect each call outcome in extensive call to the referenced call outcome through
calls_extensive.content.callOutcome.id; flag ID values that do not resolve in that provider namespace. - Interpretation: Gong API reports ID as an identifier in its call outcome namespace; it is not a universal identity outside Gong API.
Name
Name
calls_extensive.content.callOutcome.nameName. The provider-reported name for each call outcome in extensive call. It gives the call outcome a human-readable provider label while its identifier remains the stable reference.- Enables: Label each call outcome with name from
calls_extensive.content.callOutcome.name; distinguish records that share that display name but have different Gong API identifiers. - Interpretation: Gong API reports name as display text for each call outcome; names are mutable and are not stable identities.
Highlights
Highlights
calls_extensive.content.highlightsHighlights. The provider-returned highlights collection nested under the content structure for each extensive call; needed to retain every element with its parent relationship.- Enables: Review each provider-generated highlight in
calls_extensive.content.highlightswithin its parent extensive call; retain element order and attribution without treating it as a Parable judgment. - Interpretation: Gong API returns highlights as ordered content or provider-generated content metadata on each content; truncation, omission, and inaccessible source media can limit completeness. Gong API generated or classified this result; it may be incomplete and is not a Parable-authored judgment.
Items
Items
calls_extensive.content.highlights.itemsItems. The provider-returned items collection nested under the highlight structure for each extensive call; needed to retain every element with its parent relationship.- Enables: Review each provider-generated item in
calls_extensive.content.highlights.itemswithin its parent extensive call; retain element order and attribution without treating it as a Parable judgment. - Interpretation: Gong API returns items as ordered content or provider-generated content metadata on each highlight; truncation, omission, and inaccessible source media can limit completeness.
Start Times
Start Times
calls_extensive.content.highlights.items.startTimesStart Times. The provider-returned start times collection nested under the item structure for each extensive call; needed to retain every element with its parent relationship.- Enables: Order the returned start times values in
calls_extensive.content.highlights.items.startTimesat the provider’s declared unit and pair interval boundaries before measuring elapsed time for the parent extensive call. - Interpretation: Gong API returns start times as ordered time values on each item; unit, timezone, and absolute-versus-relative meaning follow the provider field and must not be guessed.
Text
Text
calls_extensive.content.highlights.items.textText. The provider-reported text for each item in extensive call. It defines the content surface available for this extensive call.- Enables: Locate item records by text in
calls_extensive.content.highlights.items.text; attribute each text match to its parent extensive call and, when present, its reported author. - Interpretation: Gong supplies this call content; provider-generated excerpts or summaries may omit context and are not Parable-authored assessments.
Title
Title
calls_extensive.content.highlights.titleTitle. The provider-reported title for each highlight in extensive call. It gives the highlight a human-readable provider label while its identifier remains the stable reference.- Enables: Label each highlight with title from
calls_extensive.content.highlights.title; distinguish records that share that display name but have different Gong API identifiers. - Interpretation: Gong API reports title as display text for each highlight; names are mutable and are not stable identities.
Key Points
Key Points
calls_extensive.content.keyPointsKey Points. The provider-returned key points collection nested under the content structure for each extensive call; needed to retain every element with its parent relationship.- Enables: Connect the parent extensive call to every referenced key point in
calls_extensive.content.keyPoints; identify provider IDs that do not resolve to the expected related object. - Interpretation: Gong API returns key points as an array of key point entries on each content; missing, empty, and permission-redacted arrays are not equivalent. Gong API generated or classified this result; it may be incomplete and is not a Parable-authored judgment.
Text
Text
calls_extensive.content.keyPoints.textText. The provider-reported text for each key point in extensive call. It defines the content surface available for this extensive call.- Enables: Locate key point records by text in
calls_extensive.content.keyPoints.text; attribute each text match to its parent extensive call and, when present, its reported author. - Interpretation: Gong supplies this call content; provider-generated excerpts or summaries may omit context and are not Parable-authored assessments.
Outline
Outline
calls_extensive.content.outlineOutline. The provider-returned outline collection nested under the content structure for each extensive call; needed to retain every element with its parent relationship.- Enables: Review each provider-generated outline in
calls_extensive.content.outlinewithin its parent extensive call; retain element order and attribution without treating it as a Parable judgment. - Interpretation: Gong API returns outline as ordered content or provider-generated content metadata on each content; truncation, omission, and inaccessible source media can limit completeness. Gong API generated or classified this result; it may be incomplete and is not a Parable-authored judgment.
Duration
Duration
calls_extensive.content.outline.durationDuration. The provider-reported duration for each outline in extensive call. It supplies the duration measure for the outline at the provider’s declared unit and grain.- Enables: Measure duration through
calls_extensive.content.outline.durationfor each outline and compare only values with the same unit and record grain. - Interpretation: Gong API reports duration as a measure on each outline; compare only records with the same unit and aggregation grain.
Items
Items
calls_extensive.content.outline.itemsItems. The provider-returned items collection nested under the outline structure for each extensive call; needed to retain every element with its parent relationship.- Enables: Review each provider-generated item in
calls_extensive.content.outline.itemswithin its parent extensive call; retain element order and attribution without treating it as a Parable judgment. - Interpretation: Gong API returns items as ordered content or provider-generated content metadata on each outline; truncation, omission, and inaccessible source media can limit completeness.
Start Time
Start Time
calls_extensive.content.outline.items.startTimeStart Time. The provider-reported start time for each item in extensive call. It supplies the start time measure for the item at the provider’s declared unit and grain.- Enables: Order call excerpts by the numeric start time in
calls_extensive.content.outline.items.startTime; pair start and end positions before calculating a span. - Interpretation: Gong API reports start time as a number at the parent record’s grain on each item; compare only records with the same unit and aggregation grain. Gong returns a numeric call-relative position here, but this declaration does not state a unit; do not interpret it as a wall-clock timestamp.
Text
Text
calls_extensive.content.outline.items.textText. The provider-reported text for each item in extensive call. It defines the content surface available for this extensive call.- Enables: Locate item records by text in
calls_extensive.content.outline.items.text; attribute each text match to its parent extensive call and, when present, its reported author. - Interpretation: Gong supplies this call content; provider-generated excerpts or summaries may omit context and are not Parable-authored assessments.
Section
Section
calls_extensive.content.outline.sectionSection. The provider-reported section for each outline in extensive call. It supplies the returned section text needed to understand the outline in context.- Enables: Search the returned section text in
calls_extensive.content.outline.sectionand attribute each match to its parent calls extensive and reported author when available. - Interpretation: Gong API supplies section as returned text on each outline; truncation, formatting, and access boundaries can limit completeness.
Start Time
Start Time
calls_extensive.content.outline.startTimeStart Time. The provider-reported start time for each outline in extensive call. It supplies the start time measure for the outline at the provider’s declared unit and grain.- Enables: Order call excerpts by the numeric start time in
calls_extensive.content.outline.startTime; pair start and end positions before calculating a span. - Interpretation: Gong API reports start time as a number at the parent record’s grain on each outline; compare only records with the same unit and aggregation grain. Gong returns a numeric call-relative position here, but this declaration does not state a unit; do not interpret it as a wall-clock timestamp.
Points Of Interest
Points Of Interest
calls_extensive.content.pointsOfInterestPoints Of Interest. The structured points of interest details attached to each content in extensive call. It preserves the nested context needed to interpret the parent extensive call.- Enables: Attribute points of interest in
calls_extensive.content.pointsOfInterestto the parent extensive call; identify parent records where that nested points of interest object is absent. - Interpretation: Gong API reports points of interest as a nested object on each content; optional children may be absent from a valid response.
Action Items
Action Items
calls_extensive.content.pointsOfInterest.actionItemsAction Items. The provider-returned action items collection nested under the points of interest structure for each extensive call; needed to retain every element with its parent relationship.- Enables: Search the returned action items content in
calls_extensive.content.pointsOfInterest.actionItemswhile preserving element order and attribution to the parent extensive call. - Interpretation: Gong API returns action items as ordered content or provider-generated content metadata on each points-of-interest group; truncation, omission, and inaccessible source media can limit completeness.
Snippet
Snippet
calls_extensive.content.pointsOfInterest.actionItems.snippetSnippet. The provider-reported snippet for each action item in extensive call. It defines the content surface available for this extensive call.- Enables: Locate extensive call records whose snippet in
calls_extensive.content.pointsOfInterest.actionItems.snippetcontains the search term; open the Gong API record when the excerpt lacks needed context. - Interpretation: This is an excerpt supplied by the provider, not the complete body or an attachment.
Snippet End Time
Snippet End Time
calls_extensive.content.pointsOfInterest.actionItems.snippetEndTimeSnippet End Time. The provider-reported snippet end time for each action item in extensive call. It defines the content surface available for this extensive call.- Enables: Locate extensive call records whose snippet end time in
calls_extensive.content.pointsOfInterest.actionItems.snippetEndTimecontains the search term; open the Gong API record when the excerpt lacks needed context. - Interpretation: This is an excerpt supplied by the provider, not the complete body or an attachment. Gong returns a numeric call-relative position here, but this declaration does not state a unit; do not interpret it as a wall-clock timestamp.
Snippet Start Time
Snippet Start Time
calls_extensive.content.pointsOfInterest.actionItems.snippetStartTimeSnippet Start Time. The provider-reported snippet start time for each action item in extensive call. It defines the content surface available for this extensive call.- Enables: Locate extensive call records whose snippet start time in
calls_extensive.content.pointsOfInterest.actionItems.snippetStartTimecontains the search term; open the Gong API record when the excerpt lacks needed context. - Interpretation: This is an excerpt supplied by the provider, not the complete body or an attachment. Gong returns a numeric call-relative position here, but this declaration does not state a unit; do not interpret it as a wall-clock timestamp.
Speaker ID
Speaker ID
calls_extensive.content.pointsOfInterest.actionItems.speakerIdSpeaker ID. The provider-reported speaker ID for each action item in extensive call. It provides the reference needed to connect the extensive call to the corresponding provider object.- Enables: Connect each action item in extensive call to the referenced speaker through
calls_extensive.content.pointsOfInterest.actionItems.speakerId; flag speaker ID values that do not resolve in that provider namespace. - Interpretation: Gong API reports speaker ID as an identifier in its speaker namespace; it is not a universal identity outside Gong API.
Structure
Structure
calls_extensive.content.structureStructure. The provider-returned structure collection nested under the content structure for each extensive call; needed to retain every element with its parent relationship.- Enables: Search the returned structure content in
calls_extensive.content.structurewhile preserving element order and attribution to the parent extensive call. - Interpretation: Gong API returns structure as ordered content or provider-generated content metadata on each content; truncation, omission, and inaccessible source media can limit completeness.
Duration
Duration
calls_extensive.content.structure.durationDuration. Section duration in seconds. It supplies the duration measure for the structure at the provider’s declared unit and grain.- Enables: Measure duration through
calls_extensive.content.structure.durationfor each structure and compare only values with the same unit and record grain. - Interpretation: Gong API reports duration as a measure on each structure; compare only records with the same unit and aggregation grain.
Name
Name
calls_extensive.content.structure.nameName. Section name (e.g., Discussion, Setup). It supplies the returned name text needed to understand the structure in context.- Enables: Label each structure with name from
calls_extensive.content.structure.name; distinguish records that share that display name but have different Gong API identifiers. - Interpretation: Gong API reports name as display text for each structure; names are mutable and are not stable identities.
Topics
Topics
calls_extensive.content.topicsTopics. The provider-returned topics collection nested under the content structure for each extensive call; needed to retain every element with its parent relationship.- Enables: Review each provider-generated topic in
calls_extensive.content.topicswithin its parent extensive call; retain element order and attribution without treating it as a Parable judgment. - Interpretation: Gong API returns topics as ordered content or provider-generated content metadata on each content; truncation, omission, and inaccessible source media can limit completeness. Gong API generated or classified this result; it may be incomplete and is not a Parable-authored judgment.
Duration
Duration
calls_extensive.content.topics.durationDuration. Total seconds spent on this topic. It supplies the duration measure for the topic at the provider’s declared unit and grain.- Enables: Measure duration through
calls_extensive.content.topics.durationfor each topic and compare only values with the same unit and record grain. - Interpretation: Gong API reports duration as a measure on each topic; compare only records with the same unit and aggregation grain. Gong API generated or classified this result; it may be incomplete and is not a Parable-authored judgment.
Name
Name
calls_extensive.content.topics.nameName. Topic name. It supplies the returned name text needed to understand the topic in context.- Enables: Label each topic with name from
calls_extensive.content.topics.name; distinguish records that share that display name but have different Gong API identifiers. - Interpretation: Gong API reports name as display text for each topic; names are mutable and are not stable identities. Gong API generated or classified this result; it may be incomplete and is not a Parable-authored judgment.
Tracker Occurrences
Tracker Occurrences
calls_extensive.content.trackerOccurrencesTracker Occurrences. The provider-returned tracker occurrences collection nested under the content structure for each extensive call; needed to retain every element with its parent relationship.- Enables: Review each provider-generated tracker occurrence in
calls_extensive.content.trackerOccurrenceswithin its parent extensive call; retain element order and attribution without treating it as a Parable judgment. - Interpretation: Gong API returns tracker occurrences as ordered content or provider-generated content metadata on each content; truncation, omission, and inaccessible source media can limit completeness. Gong API generated or classified this result; it may be incomplete and is not a Parable-authored judgment.
Speaker ID
Speaker ID
calls_extensive.content.trackerOccurrences.speakerIdSpeaker ID. The provider-reported speaker ID for each tracker occurrence in extensive call. It provides the reference needed to connect the extensive call to the corresponding provider object.- Enables: Connect each tracker occurrence in extensive call to the referenced speaker through
calls_extensive.content.trackerOccurrences.speakerId; flag speaker ID values that do not resolve in that provider namespace. - Interpretation: Gong API reports speaker ID as an identifier in its speaker namespace; it is not a universal identity outside Gong API.
Start Time
Start Time
calls_extensive.content.trackerOccurrences.startTimeStart Time. The provider-reported start time for each tracker occurrence in extensive call. It supplies the start time measure for the tracker occurrence at the provider’s declared unit and grain.- Enables: Order call excerpts by the numeric start time in
calls_extensive.content.trackerOccurrences.startTime; pair start and end positions before calculating a span. - Interpretation: Gong API reports start time as a number at the parent record’s grain on each tracker occurrence; compare only records with the same unit and aggregation grain. Gong returns a numeric call-relative position here, but this declaration does not state a unit; do not interpret it as a wall-clock timestamp.
Tracker ID
Tracker ID
calls_extensive.content.trackerOccurrences.trackerIdTracker ID. The provider-reported tracker ID for each tracker occurrence in extensive call. It provides the reference needed to connect the extensive call to the corresponding provider object.- Enables: Connect each tracker occurrence in extensive call to the referenced tracker through
calls_extensive.content.trackerOccurrences.trackerId; flag tracker ID values that do not resolve in that provider namespace. - Interpretation: Gong API reports tracker ID as an identifier in its tracker namespace; it is not a universal identity outside Gong API. Gong API generated or classified this result; it may be incomplete and is not a Parable-authored judgment.
Trackers
Trackers
calls_extensive.content.trackersTrackers. The provider-returned trackers collection nested under the content structure for each extensive call; needed to retain every element with its parent relationship.- Enables: Compare the exact Gong API-configured trackers set in
calls_extensive.content.trackersfor each content; preserve provider labels and unknown entries. - Interpretation: Gong API returns trackers as an array of tracker entries on each content; missing, empty, and permission-redacted arrays are not equivalent. Gong API generated or classified this result; it may be incomplete and is not a Parable-authored judgment.
Count
Count
calls_extensive.content.trackers.countCount. Number of times the tracker fired. It supplies the count measure for the tracker at the provider’s declared unit and grain.- Enables: Measure count through
calls_extensive.content.trackers.countfor each tracker and compare only values with the same unit and record grain. - Interpretation: Gong API reports count as a measure on each tracker; compare only records with the same unit and aggregation grain. Gong API generated or classified this result; it may be incomplete and is not a Parable-authored judgment.
ID
ID
calls_extensive.content.trackers.idID. Tracker ID. It provides the reference needed to connect the extensive call to the corresponding provider object.- Enables: Connect each tracker in extensive call to the referenced tracker through
calls_extensive.content.trackers.id; flag ID values that do not resolve in that provider namespace. - Interpretation: Gong API reports ID as an identifier in its tracker namespace; it is not a universal identity outside Gong API. Gong API generated or classified this result; it may be incomplete and is not a Parable-authored judgment.
Name
Name
calls_extensive.content.trackers.nameName. Tracker name. It gives the tracker a human-readable provider label while its identifier remains the stable reference.- Enables: Label each tracker with name from
calls_extensive.content.trackers.name; distinguish records that share that display name but have different Gong API identifiers. - Interpretation: Gong API reports name as display text for each tracker; names are mutable and are not stable identities. Gong API generated or classified this result; it may be incomplete and is not a Parable-authored judgment.
Occurrences
Occurrences
calls_extensive.content.trackers.occurrencesOccurrences. The provider-returned occurrences collection nested under the tracker structure for each extensive call; needed to retain every element with its parent relationship.- Enables: Review each provider-generated occurrence in
calls_extensive.content.trackers.occurrenceswithin its parent extensive call; retain element order and attribution without treating it as a Parable judgment. - Interpretation: Gong API returns occurrences as ordered content or provider-generated content metadata on each tracker; truncation, omission, and inaccessible source media can limit completeness.
Speaker ID
Speaker ID
calls_extensive.content.trackers.occurrences.speakerIdSpeaker ID. The provider-reported speaker ID for each occurrence in extensive call. It provides the reference needed to connect the extensive call to the corresponding provider object.- Enables: Connect each occurrence in extensive call to the referenced speaker through
calls_extensive.content.trackers.occurrences.speakerId; flag speaker ID values that do not resolve in that provider namespace. - Interpretation: Gong API reports speaker ID as an identifier in its speaker namespace; it is not a universal identity outside Gong API.
Start Time
Start Time
calls_extensive.content.trackers.occurrences.startTimeStart Time. Start time in seconds from call start. It supplies the start time measure for the occurrence at the provider’s declared unit and grain.- Enables: Order call excerpts by the numeric start time in
calls_extensive.content.trackers.occurrences.startTime; pair start and end positions before calculating a span. - Interpretation: Gong API reports start time as seconds on each occurrence; compare only records with the same unit and aggregation grain. Gong returns a call-relative position in the stated unit; it is not a wall-clock timestamp.
Phrases
Phrases
calls_extensive.content.trackers.phrasesPhrases. The provider-returned phrases collection nested under the tracker structure for each extensive call; needed to retain every element with its parent relationship.- Enables: Review each provider-generated phrase in
calls_extensive.content.trackers.phraseswithin its parent extensive call; retain element order and attribution without treating it as a Parable judgment. - Interpretation: Gong API returns phrases as ordered content or provider-generated content metadata on each tracker; truncation, omission, and inaccessible source media can limit completeness.
Count
Count
calls_extensive.content.trackers.phrases.countCount. The provider-reported count for each phrase in extensive call. It supplies the count measure for the phrase at the provider’s declared unit and grain.- Enables: Measure count through
calls_extensive.content.trackers.phrases.countfor each phrase and compare only values with the same unit and record grain. - Interpretation: Gong API reports count as a measure on each phrase; compare only records with the same unit and aggregation grain.
Occurrences
Occurrences
calls_extensive.content.trackers.phrases.occurrencesOccurrences. The provider-returned occurrences collection nested under the phrase structure for each extensive call; needed to retain every element with its parent relationship.- Enables: Review each provider-generated occurrence in
calls_extensive.content.trackers.phrases.occurrenceswithin its parent extensive call; retain element order and attribution without treating it as a Parable judgment. - Interpretation: Gong API returns occurrences as ordered content or provider-generated content metadata on each phrase; truncation, omission, and inaccessible source media can limit completeness.
Speaker ID
Speaker ID
calls_extensive.content.trackers.phrases.occurrences.speakerIdSpeaker ID. The provider-reported speaker ID for each occurrence in extensive call. It provides the reference needed to connect the extensive call to the corresponding provider object.- Enables: Connect each occurrence in extensive call to the referenced speaker through
calls_extensive.content.trackers.phrases.occurrences.speakerId; flag speaker ID values that do not resolve in that provider namespace. - Interpretation: Gong API reports speaker ID as an identifier in its speaker namespace; it is not a universal identity outside Gong API.
Start Time
Start Time
calls_extensive.content.trackers.phrases.occurrences.startTimeStart Time. The provider-reported start time for each occurrence in extensive call. It supplies the start time measure for the occurrence at the provider’s declared unit and grain.- Enables: Order call excerpts by the numeric start time in
calls_extensive.content.trackers.phrases.occurrences.startTime; pair start and end positions before calculating a span. - Interpretation: Gong API reports start time as a number at the parent record’s grain on each occurrence; compare only records with the same unit and aggregation grain. Gong returns a numeric call-relative position here, but this declaration does not state a unit; do not interpret it as a wall-clock timestamp.
Phrase
Phrase
calls_extensive.content.trackers.phrases.phrasePhrase. The provider-reported phrase for each phrase in extensive call. It supplies the returned phrase text needed to understand the phrase in context.- Enables: Search the returned phrase text in
calls_extensive.content.trackers.phrases.phraseand attribute each match to its parent calls extensive and reported author when available. - Interpretation: Gong API supplies phrase as returned text on each phrase; truncation, formatting, and access boundaries can limit completeness.
Type
Type
calls_extensive.content.trackers.typeType. Tracker type (KEYWORD, SMART). It distinguishes the provider-defined type state or classification for the tracker.- Enables: Segment tracker entries in extensive call by type in
calls_extensive.content.trackers.type; compare counts only within the same Gong API taxonomy. - Interpretation: Gong API reports type as a label from its own taxonomy on each tracker; preserve unknown labels rather than mapping them by assumption. Gong API generated or classified this result; it may be incomplete and is not a Parable-authored judgment.
Context
Context
calls_extensive.contextContext. CRM context objects associated with the call (accounts, deals, contacts) from connected CRM systems. Populated when contentSelector.context is Extended. It preserves the nested context needed to interpret the parent extensive call.- Enables: Attribute every returned context in
calls_extensive.contextto its parent extensive call; keep each relationship distinct and distinguish an absent array from an explicitly empty one. - Interpretation: Gong API returns context as an array of context entries on each extensive call; missing, empty, and permission-redacted arrays are not equivalent.
Objects
Objects
calls_extensive.context.objectsObjects. CRM objects from this system associated with the call. It preserves the nested context needed to interpret the parent extensive call.- Enables: Attribute every returned object in
calls_extensive.context.objectsto its parent extensive call; keep each relationship distinct and distinguish an absent array from an explicitly empty one. - Interpretation: Gong API returns objects as an array of object entries on each context; missing, empty, and permission-redacted arrays are not equivalent.
Fields
Fields
calls_extensive.context.objects.fieldsFields. CRM field name/value pairs for the object. It preserves the nested context needed to interpret the parent extensive call.- Enables: Compare the exact Gong API-configured fields set in
calls_extensive.context.objects.fieldsfor each object; preserve provider labels and unknown entries. - Interpretation: Gong API returns fields as an array of field entries on each object; missing, empty, and permission-redacted arrays are not equivalent.
Name
Name
calls_extensive.context.objects.fields.nameName. CRM field name. It gives the field a human-readable provider label while its identifier remains the stable reference.- Enables: Label each field with name from
calls_extensive.context.objects.fields.name; distinguish records that share that display name but have different Gong API identifiers. - Interpretation: Gong API reports name as display text for each field; names are mutable and are not stable identities.
Value
Value
calls_extensive.context.objects.fields.valueValue. CRM field value serialized as a string. It must be interpreted with the enclosing provider field name, type, or custom schema for the field.- Enables: Interpret
calls_extensive.context.objects.fields.valuewith the enclosing custom field name, declared type, and provider schema; compare only records that share that contract. - Interpretation: Gong API reports value under the enclosing custom or typed field contract on each field; compare it only with values from the same provider key and type.
Object ID
Object ID
calls_extensive.context.objects.objectIdObject ID. CRM object identifier. It provides the reference needed to connect the extensive call to the corresponding provider object.- Enables: Connect each object in extensive call to the referenced object through
calls_extensive.context.objects.objectId; flag object ID values that do not resolve in that provider namespace. - Interpretation: Gong API reports object ID as an identifier in its object namespace; it is not a universal identity outside Gong API.
Object Type
Object Type
calls_extensive.context.objects.objectTypeObject Type. CRM object type (Account, Opportunity, Contact, etc.). It supplies the object type boundary, band, or unit needed to interpret the companion measure.- Enables: Segment object entries in extensive call by object type in
calls_extensive.context.objects.objectType; compare counts only within the same Gong API taxonomy. - Interpretation: Gong API reports object type as a label from its own taxonomy on each object; preserve unknown labels rather than mapping them by assumption.
System
System
calls_extensive.context.systemSystem. CRM system name (e.g., Salesforce). It distinguishes the provider-defined system state or classification for the context.- Enables: Match repeated context entries on system in
calls_extensive.context.system; collapse only entries that share this declared transform key. - Interpretation: Gong API reports system on each context; missing and empty values can have different meanings. The connector explicitly marks this field as a transform deduplication key.
Interaction
Interaction
calls_extensive.interactionInteraction. Interaction metrics for the call. It preserves the nested context needed to interpret the parent extensive call.- Enables: Attribute interaction in
calls_extensive.interactionto the parent extensive call; identify parent records where that nested interaction object is absent. - Interpretation: Gong API reports interaction as a nested object on each extensive call; optional children may be absent from a valid response.
Interaction Stats
Interaction Stats
calls_extensive.interaction.interactionStatsInteraction Stats. The provider-returned interaction stats collection nested under the interaction structure for each extensive call; needed to retain every element with its parent relationship.- Enables: Measure each returned interaction stat in
calls_extensive.interaction.interactionStatsat its element and time grain; compare values only when Gong API reports the same unit and aggregation. - Interpretation: Gong API returns interaction stats as an array of interaction stat entries on each interaction; missing, empty, and permission-redacted arrays are not equivalent.
Name
Name
calls_extensive.interaction.interactionStats.nameName. Stat name (e.g., Interactivity, Patience). It gives the interaction stat a human-readable provider label while its identifier remains the stable reference.- Enables: Label each interaction stat with name from
calls_extensive.interaction.interactionStats.name; distinguish records that share that display name but have different Gong API identifiers. - Interpretation: Gong API reports name as display text for each interaction stat; names are mutable and are not stable identities.
Value
Value
calls_extensive.interaction.interactionStats.valueValue. Stat value. It must be interpreted with the enclosing provider field name, type, or custom schema for the interaction stat.- Enables: Interpret
calls_extensive.interaction.interactionStats.valuewith the enclosing custom field name, declared type, and provider schema; compare only records that share that contract. - Interpretation: Gong API reports value under the enclosing custom or typed field contract on each interaction stat; compare it only with values from the same provider key and type.
Questions
Questions
calls_extensive.interaction.questionsQuestions. The structured questions details attached to each interaction in extensive call. It preserves the nested context needed to interpret the parent extensive call.- Enables: Attribute questions in
calls_extensive.interaction.questionsto the parent extensive call; identify parent records where that nested questions object is absent. - Interpretation: Gong API reports questions as a nested object on each interaction; optional children may be absent from a valid response.
Company Count
Company Count
calls_extensive.interaction.questions.companyCountCompany Count. Questions asked by company-side participants. It supplies the company count measure for the question at the provider’s declared unit and grain.- Enables: Measure company count through
calls_extensive.interaction.questions.companyCountfor each question and compare only values with the same unit and record grain. - Interpretation: Gong API reports company count as a measure on each question; compare only records with the same unit and aggregation grain.
Non Company Count
Non Company Count
calls_extensive.interaction.questions.nonCompanyCountNon Company Count. Questions asked by non-company participants. It supplies the non company count measure for the question at the provider’s declared unit and grain.- Enables: Measure non company count through
calls_extensive.interaction.questions.nonCompanyCountfor each question and compare only values with the same unit and record grain. - Interpretation: Gong API reports non company count as a measure on each question; compare only records with the same unit and aggregation grain.
Speakers
Speakers
calls_extensive.interaction.speakersSpeakers. The provider-returned speakers collection nested under the interaction structure for each extensive call; needed to retain every element with its parent relationship.- Enables: Match every returned speaker in
calls_extensive.interaction.speakersto the parent extensive call; use the element’s provider identity or role to reconcile membership and attribution. - Interpretation: Gong API returns speakers as an array of speaker entries on each interaction; missing, empty, and permission-redacted arrays are not equivalent.
ID
ID
calls_extensive.interaction.speakers.idID. Speaker ID; correlates with parties.speakerId. It provides the reference needed to connect the extensive call to the corresponding provider object.- Enables: Connect each speaker in extensive call to the referenced speaker through
calls_extensive.interaction.speakers.id; flag ID values that do not resolve in that provider namespace. - Interpretation: Gong API reports ID as an identifier in its speaker namespace; it is not a universal identity outside Gong API.
Talk Time
Talk Time
calls_extensive.interaction.speakers.talkTimeTalk Time. Total speaking time in seconds. It supplies the talk time measure for the speaker at the provider’s declared unit and grain.- Enables: Order call excerpts by the numeric talk time in
calls_extensive.interaction.speakers.talkTime; pair start and end positions before calculating a span. - Interpretation: Gong API reports talk time as seconds on each speaker; compare only records with the same unit and aggregation grain. Gong returns a call-relative position in the stated unit; it is not a wall-clock timestamp.
User ID
User ID
calls_extensive.interaction.speakers.userIdUser ID. Gong user ID if the speaker is a user. It provides the reference needed to connect the extensive call to the corresponding provider object.- Enables: Connect each speaker in extensive call to the referenced user through
calls_extensive.interaction.speakers.userId; flag user ID values that do not resolve in that provider namespace. - Interpretation: Gong API reports user ID as an identifier in its user namespace; it is not a universal identity outside Gong API.
Video
Video
calls_extensive.interaction.videoVideo. The provider-returned video collection nested under the interaction structure for each extensive call; needed to retain every element with its parent relationship.- Enables: Associate each returned video metadata entry in
calls_extensive.interaction.videowith the parent extensive call; inventory the reference without assuming file, recording, or attachment bytes are present. - Interpretation: Gong API returns video as file, recording, or attachment metadata on each interaction; the array does not imply that binary content was collected.
Duration
Duration
calls_extensive.interaction.video.durationDuration. The provider-reported duration for each video in extensive call. It supplies the duration measure for the video at the provider’s declared unit and grain.- Enables: Measure duration through
calls_extensive.interaction.video.durationfor each video and compare only values with the same unit and record grain. - Interpretation: Gong API reports duration as a measure on each video; compare only records with the same unit and aggregation grain.
Name
Name
calls_extensive.interaction.video.nameName. Video metric name. It gives the video a human-readable provider label while its identifier remains the stable reference.- Enables: Label each video with name from
calls_extensive.interaction.video.name; distinguish records that share that display name but have different Gong API identifiers. - Interpretation: Gong API reports name as display text for each video; names are mutable and are not stable identities.
Media
Media
calls_extensive.mediaMedia. Media URLs for the call. It preserves the nested context needed to interpret the parent extensive call.- Enables: Attribute media in
calls_extensive.mediato the parent extensive call; identify parent records where that nested media object is absent. - Interpretation: Gong API reports media as a nested object on each extensive call; optional children may be absent from a valid response.
Audio URL
Audio URL
calls_extensive.media.audioUrlAudio URL. Pre-signed URL for the audio recording. It locates the provider resource or path associated with the media.- Enables: Associate each media with the resource identified by audio URL in
calls_extensive.media.audioUrl; verify the link resolves to the expected Gong API object. - Interpretation: Gong API reports audio URL as a resource locator for each media; access still depends on viewer permissions and the URL may expire or change.
Video URL
Video URL
calls_extensive.media.videoUrlVideo URL. Pre-signed URL for the video recording. It locates the provider resource or path associated with the media.- Enables: Associate each media with the resource identified by video URL in
calls_extensive.media.videoUrl; verify the link resolves to the expected Gong API object. - Interpretation: Gong API reports video URL as a resource locator for each media; access still depends on viewer permissions and the URL may expire or change.
Meta Data
Meta Data
calls_extensive.metaDataMeta Data. The structured meta data details attached to each extensive call in extensive call. It preserves the nested context needed to interpret the parent extensive call.- Enables: Attribute meta data in
calls_extensive.metaDatato the parent extensive call; identify parent records where that nested meta data object is absent. - Interpretation: Gong API reports meta data as a nested object on each extensive call; optional children may be absent from a valid response.
Calendar Event ID
Calendar Event ID
calls_extensive.metaData.calendarEventIdCalendar Event ID. Associated calendar event ID. It provides the reference needed to connect the extensive call to the corresponding provider object.- Enables: Connect each Gong call extensive metadata in extensive call to the referenced calendar event through
calls_extensive.GongCallExtensiveMetadata.calendarEventId; flag calendar event ID values that do not resolve in that provider namespace. - Interpretation: Gong API reports calendar event ID as an identifier in its calendar event namespace; it is not a universal identity outside Gong API.
Client Unique ID
Client Unique ID
calls_extensive.metaData.clientUniqueIdClient Unique ID. Client-provided unique identifier. It provides the reference needed to connect the extensive call to the corresponding provider object.- Enables: Connect each Gong call extensive metadata in extensive call to the referenced client unique through
calls_extensive.GongCallExtensiveMetadata.clientUniqueId; flag client unique ID values that do not resolve in that provider namespace. - Interpretation: Gong API reports client unique ID as an identifier in its client unique namespace; it is not a universal identity outside Gong API.
Custom Data
Custom Data
calls_extensive.metaData.customDataCustom Data. Free-form custom data associated with the call. It must be interpreted with the enclosing provider field name, type, or custom schema for the Gong call extensive metadata.- Enables: Interpret
calls_extensive.GongCallExtensiveMetadata.customDatawith the enclosing custom field name, declared type, and provider schema; compare only records that share that contract. - Interpretation: Gong API reports custom data under the enclosing custom or typed field contract on each Gong call extensive metadata; compare it only with values from the same provider key and type.
Direction
Direction
calls_extensive.metaData.directionDirection. Direction of the call (Inbound, Outbound, Conference, Unknown). It distinguishes the provider-defined direction state or classification for the Gong call extensive metadata.- Enables: Filter Calls Extensive by the exact Gong API-defined direction in
calls_extensive.GongCallExtensiveMetadata.directionand preserve unknown values as distinct categories. - Interpretation: Gong API supplies direction from its own taxonomy on each Gong call extensive metadata; preserve unknown and newly introduced labels.
Duration
Duration
calls_extensive.metaData.durationDuration. Duration of the call in seconds. It supplies the duration measure for the Gong call extensive metadata at the provider’s declared unit and grain.- Enables: Measure duration through
calls_extensive.GongCallExtensiveMetadata.durationfor each Gong call extensive metadata and compare only values with the same unit and record grain. - Interpretation: Gong API reports duration as a measure on each Gong call extensive metadata; compare only records with the same unit and aggregation grain.
ID
ID
calls_extensive.metaData.idID. Unique identifier for the call. It provides the reference needed to connect the extensive call to the corresponding provider object.- Enables: Match repeated Gong call extensive metadata entries on ID in
calls_extensive.GongCallExtensiveMetadata.id; collapse only entries that share this declared transform key. - Interpretation: Gong API reports ID as an identifier in its Gong call extensive metadata namespace; it is not a universal identity outside Gong API. The connector explicitly marks this field as a transform deduplication key.
Is Private
Is Private
calls_extensive.metaData.isPrivateIs Private. Whether the call is private. It distinguishes the provider-defined is private state or classification for the Gong call extensive metadata.- Enables: Filter extensive call by whether the call is private in
calls_extensive.GongCallExtensiveMetadata.isPrivate; count true, false, and missing results separately. - Interpretation: Gong API reports the call is private as a boolean on each Gong call extensive metadata; a missing field is unknown, not false.
Language
Language
calls_extensive.metaData.languageLanguage. Language of the call (BCP-47 tag). It supplies the language profile facet used to reconcile or attribute the Gong call extensive metadata.- Enables: Reconcile the calls extensive’s language in
calls_extensive.GongCallExtensiveMetadata.languagewith its provider profile or directory identity; confirm ambiguous matches with the stable provider ID. - Interpretation: Gong API reports language as a mutable profile or directory attribute on each Gong call extensive metadata; it may be absent, shared, or non-unique.
Media
Media
calls_extensive.metaData.mediaMedia. Media type of the call (Audio, Video). It distinguishes the provider-defined media state or classification for the Gong call extensive metadata.- Enables: Filter Calls Extensive by the exact Gong API-defined media in
calls_extensive.GongCallExtensiveMetadata.mediaand preserve unknown values as distinct categories. - Interpretation: Gong API supplies media from its own taxonomy on each Gong call extensive metadata; preserve unknown and newly introduced labels.
Meeting URL
Meeting URL
calls_extensive.metaData.meetingUrlMeeting URL. Meeting URL for the call. It locates the provider resource or path associated with the Gong call extensive metadata.- Enables: Associate each Gong call extensive metadata with the resource identified by meeting URL in
calls_extensive.GongCallExtensiveMetadata.meetingUrl; verify the link resolves to the expected Gong API object. - Interpretation: Gong API reports meeting URL as a resource locator for each Gong call extensive metadata; access still depends on viewer permissions and the URL may expire or change.
Primary User ID
Primary User ID
calls_extensive.metaData.primaryUserIdPrimary User ID. Primary Gong user associated with the call. It provides the reference needed to connect the extensive call to the corresponding provider object.- Enables: Connect each Gong call extensive metadata in extensive call to the referenced primary user through
calls_extensive.GongCallExtensiveMetadata.primaryUserId; flag primary user ID values that do not resolve in that provider namespace. - Interpretation: Gong API reports primary user ID as an identifier in its primary user namespace; it is not a universal identity outside Gong API.
Purpose
Purpose
calls_extensive.metaData.purposePurpose. Purpose of the call. It supplies the returned purpose text needed to understand the Gong call extensive metadata in context.- Enables: Search the returned purpose text in
calls_extensive.GongCallExtensiveMetadata.purposeand attribute each match to its parent calls extensive and reported author when available. - Interpretation: Gong API supplies purpose as returned text on each Gong call extensive metadata; truncation, formatting, and access boundaries can limit completeness.
Scheduled
Scheduled
calls_extensive.metaData.scheduledScheduled. Scheduled time of the call (ISO-8601). It is needed to place the Gong call extensive metadata on the provider timeline at the field’s stated precision.- Enables: Order Calls Extensive by the provider-reported instant in
calls_extensive.GongCallExtensiveMetadata.scheduledand isolate records inside the same time window and precision. - Interpretation: Gong API reports scheduled as a time value for each Gong call extensive metadata; format, timezone, precision, and absolute-versus-relative meaning follow this field’s contract.
Scope
Scope
calls_extensive.metaData.scopeScope. Scope of the call (Internal, External, Unknown). It distinguishes the provider-defined scope state or classification for the Gong call extensive metadata.- Enables: Filter Calls Extensive by the exact Gong API-defined scope in
calls_extensive.GongCallExtensiveMetadata.scopeand preserve unknown values as distinct categories. - Interpretation: Gong API supplies scope from its own taxonomy on each Gong call extensive metadata; preserve unknown and newly introduced labels.
Sdr Disposition
Sdr Disposition
calls_extensive.metaData.sdrDispositionSdr Disposition. Sales-development representative disposition tag. It distinguishes the provider-defined sdr disposition state or classification for the Gong call extensive metadata.- Enables: Filter Calls Extensive by the exact Gong API-defined sdr disposition in
calls_extensive.GongCallExtensiveMetadata.sdrDispositionand preserve unknown values as distinct categories. - Interpretation: Gong API supplies sdr disposition from its own taxonomy on each Gong call extensive metadata; preserve unknown and newly introduced labels.
Started
Started
calls_extensive.metaData.startedStarted. Actual start time of the call (ISO-8601). It anchors the extensive call on the provider’s reported timeline.- Enables: Order extensive call by started in
calls_extensive.GongCallExtensiveMetadata.startedand isolate records inside an exact provider reporting window. - Interpretation: Gong API reports started as a timestamp on each Gong call extensive metadata; timezone and precision follow this API field, and absence is not an inferred event time. A connector directive uses this field to order records for latest-state or incremental processing. The schema designates this field as the event timestamp.
System
System
calls_extensive.metaData.systemSystem. Telephony or conferencing system used. It distinguishes the provider-defined system state or classification for the Gong call extensive metadata.- Enables: Filter Calls Extensive by the exact Gong API-defined system in
calls_extensive.GongCallExtensiveMetadata.systemand preserve unknown values as distinct categories. - Interpretation: Gong API supplies system from its own taxonomy on each Gong call extensive metadata; preserve unknown and newly introduced labels.
Title
Title
calls_extensive.metaData.titleTitle. Title or subject of the call. It supplies the returned title text needed to understand the Gong call extensive metadata in context.- Enables: Label each Gong call extensive metadata with title from
calls_extensive.GongCallExtensiveMetadata.title; distinguish records that share that display name but have different Gong API identifiers. - Interpretation: Gong API reports title as display text for each Gong call extensive metadata; names are mutable and are not stable identities.
URL
URL
calls_extensive.metaData.urlURL. URL to view the call in Gong. It locates the provider resource or path associated with the Gong call extensive metadata.- Enables: Associate each Gong call extensive metadata with the resource identified by URL in
calls_extensive.GongCallExtensiveMetadata.url; verify the link resolves to the expected Gong API object. - Interpretation: Gong API reports URL as a resource locator for each Gong call extensive metadata; access still depends on viewer permissions and the URL may expire or change.
Workspace ID
Workspace ID
calls_extensive.metaData.workspaceIdWorkspace ID. Workspace the call belongs to. It provides the reference needed to connect the extensive call to the corresponding provider object.- Enables: Connect each Gong call extensive metadata in extensive call to the referenced workspace through
calls_extensive.GongCallExtensiveMetadata.workspaceId; flag workspace ID values that do not resolve in that provider namespace. - Interpretation: Gong API reports workspace ID as an identifier in its workspace namespace; it is not a universal identity outside Gong API.
Parties
Parties
calls_extensive.partiesParties. Parties (people) on the call. It preserves the nested context needed to interpret the parent extensive call.- Enables: Match every returned party in
calls_extensive.partiesto the parent extensive call; use the element’s provider identity or role to reconcile membership and attribution. - Interpretation: Gong API returns parties as an array of party entries on each extensive call; missing, empty, and permission-redacted arrays are not equivalent.
Affiliation
Affiliation
calls_extensive.parties.affiliationAffiliation. Internal | External | Unknown. It distinguishes the provider-defined affiliation state or classification for the party.- Enables: Filter Calls Extensive by the exact Gong API-defined affiliation in
calls_extensive.parties.affiliationand preserve unknown values as distinct categories. - Interpretation: Gong API supplies affiliation from its own taxonomy on each party; preserve unknown and newly introduced labels.
Context
Context
calls_extensive.parties.contextContext. CRM contact / lead context for the party. It preserves the nested context needed to interpret the parent extensive call.- Enables: Attribute every returned context in
calls_extensive.parties.contextto its parent extensive call; keep each relationship distinct and distinguish an absent array from an explicitly empty one. - Interpretation: Gong API returns context as an array of context entries on each party; missing, empty, and permission-redacted arrays are not equivalent.
Objects
Objects
calls_extensive.parties.context.objectsObjects. The provider-returned objects collection nested under the context structure for each extensive call; needed to retain every element with its parent relationship.- Enables: Attribute every returned object in
calls_extensive.parties.context.objectsto its parent extensive call; keep each relationship distinct and distinguish an absent array from an explicitly empty one. - Interpretation: Gong API returns objects as an array of object entries on each context; missing, empty, and permission-redacted arrays are not equivalent.
Fields
Fields
calls_extensive.parties.context.objects.fieldsFields. The provider-returned fields collection nested under the object structure for each extensive call; needed to retain every element with its parent relationship.- Enables: Compare the exact Gong API-configured fields set in
calls_extensive.parties.context.objects.fieldsfor each object; preserve provider labels and unknown entries. - Interpretation: Gong API returns fields as an array of field entries on each object; missing, empty, and permission-redacted arrays are not equivalent.
Name
Name
calls_extensive.parties.context.objects.fields.nameName. The provider-reported name for each field in extensive call. It gives the field a human-readable provider label while its identifier remains the stable reference.- Enables: Label each field with name from
calls_extensive.parties.context.objects.fields.name; distinguish records that share that display name but have different Gong API identifiers. - Interpretation: Gong API reports name as display text for each field; names are mutable and are not stable identities.
Value
Value
calls_extensive.parties.context.objects.fields.valueValue. The provider-reported value for each field in extensive call. It must be interpreted with the enclosing provider field name, type, or custom schema for the field.- Enables: Interpret
calls_extensive.parties.context.objects.fields.valuewith the enclosing custom field name, declared type, and provider schema; compare only records that share that contract. - Interpretation: Gong API reports value under the enclosing custom or typed field contract on each field; compare it only with values from the same provider key and type.
Object ID
Object ID
calls_extensive.parties.context.objects.objectIdObject ID. The provider-reported object ID for each object in extensive call. It provides the reference needed to connect the extensive call to the corresponding provider object.- Enables: Connect each object in extensive call to the referenced object through
calls_extensive.parties.context.objects.objectId; flag object ID values that do not resolve in that provider namespace. - Interpretation: Gong API reports object ID as an identifier in its object namespace; it is not a universal identity outside Gong API.
Object Type
Object Type
calls_extensive.parties.context.objects.objectTypeObject Type. The provider-reported object type for each object in extensive call. It distinguishes the provider-defined object type state or classification for the object.- Enables: Segment object entries in extensive call by object type in
calls_extensive.parties.context.objects.objectType; compare counts only within the same Gong API taxonomy. - Interpretation: Gong API reports object type as a label from its own taxonomy on each object; preserve unknown labels rather than mapping them by assumption.
System
System
calls_extensive.parties.context.systemSystem. CRM system the context comes from. It distinguishes the provider-defined system state or classification for the context.- Enables: Filter Calls Extensive by the exact Gong API-defined system in
calls_extensive.parties.context.systemand preserve unknown values as distinct categories. - Interpretation: Gong API supplies system from its own taxonomy on each context; preserve unknown and newly introduced labels.
Email Address
Email Address
calls_extensive.parties.emailAddressEmail Address. Email address of the party. It supplies the provider-reported address or location facet for the party, not a residency determination.- Enables: Attribute each party to a person or account by the exact email address in
calls_extensive.parties.emailAddress; identify addresses that do not match the Gong API directory. - Interpretation: Gong API reports email address as an address on each party; aliases, casing, and unverified addresses can prevent a one-to-one person match.
ID
ID
calls_extensive.parties.idID. Party ID within the call. It provides the reference needed to connect the extensive call to the corresponding provider object.- Enables: Match repeated party entries on ID in
calls_extensive.parties.id; collapse only entries that share this declared transform key. - Interpretation: Gong API reports ID as an identifier in its party namespace; it is not a universal identity outside Gong API. The connector explicitly marks this field as a transform deduplication key.
Methods
Methods
calls_extensive.parties.methodsMethods. How the party joined (Invitee, Attendee, etc.). It preserves the nested context needed to interpret the parent extensive call.- Enables: Compare the exact Gong API-configured methods set in
calls_extensive.parties.methodsfor each party; preserve provider labels and unknown entries. - Interpretation: Gong API returns methods as an array of method value entries on each party; missing, empty, and permission-redacted arrays are not equivalent.
Name
Name
calls_extensive.parties.nameName. Display name of the party. It gives the party a human-readable provider label while its identifier remains the stable reference.- Enables: Label each party with name from
calls_extensive.parties.name; distinguish records that share that display name but have different Gong API identifiers. - Interpretation: Gong API reports name as display text for each party; names are mutable and are not stable identities.
Phone Number
Phone Number
calls_extensive.parties.phoneNumberPhone Number. The provider-reported phone number for each party in extensive call. It supplies the phone number profile facet used to reconcile or attribute the party.- Enables: Reconcile the calls extensive’s phone number in
calls_extensive.parties.phoneNumberwith its provider profile or directory identity; confirm ambiguous matches with the stable provider ID. - Interpretation: Gong API reports phone number as a mutable profile or directory attribute on each party; it may be absent, shared, or non-unique.
Speaker ID
Speaker ID
calls_extensive.parties.speakerIdSpeaker ID. Speaker ID used to correlate with transcript segments. It provides the reference needed to connect the extensive call to the corresponding provider object.- Enables: Connect each party in extensive call to the referenced speaker through
calls_extensive.parties.speakerId; flag speaker ID values that do not resolve in that provider namespace. - Interpretation: Gong API reports speaker ID as an identifier in its speaker namespace; it is not a universal identity outside Gong API.
Title
Title
calls_extensive.parties.titleTitle. Job title of the party. It gives the party a human-readable provider label while its identifier remains the stable reference.- Enables: Label each party with title from
calls_extensive.parties.title; distinguish records that share that display name but have different Gong API identifiers. - Interpretation: Gong API reports title as display text for each party; names are mutable and are not stable identities.
User ID
User ID
calls_extensive.parties.userIdUser ID. Gong user ID if the party is a Gong user. It provides the reference needed to connect the extensive call to the corresponding provider object.- Enables: Connect each party in extensive call to the referenced user through
calls_extensive.parties.userId; flag user ID values that do not resolve in that provider namespace. - Interpretation: Gong API reports user ID as an identifier in its user namespace; it is not a universal identity outside Gong API.
CRM Entities
CRM Entities
crm_entitiesCRM Entities. DISABLED: Gong has no list CRM entities API. GET /v2/CRM/entities only fetches objects by known CRM IDs (dev verification). Use calls_extensive (Extended context) and manual_crm_associations for CRM data. Enable only for explicit ID-based enrichment follow-ups.- Enables: Support explicit known-ID CRM enrichment only; this declaration cannot enumerate CRM entities.
- Scope: Reads the records selected by Gong API’s
/{apiVersion}/crm/entitiesoperation as a snapshot stream using full synchronization. This stream is opt-in. Visibility follows the Gong API credential, workspace access, and the endpoint’s content-selection settings. This stream is disabled because Gong exposes lookup by known CRM IDs rather than a list operation; use extensive-call context or manual associations for enumerated CRM relationships. A later complete read can treat a previously seen record that is absent as removed.
Created Date
Created Date
crm_entities.createdDateCreated Date. Creation timestamp. It anchors the CRM entity on the provider’s reported timeline.- Enables: Order CRM Entities by created date in
crm_entities.createdDateand isolate records inside an exact provider reporting window. - Interpretation: Gong API reports created date as a calendar date on each CRM entity; its grain is one day and no time of day should be inferred.
Fields
Fields
crm_entities.fieldsFields. Field name/value pairs for the CRM object. It preserves the nested context needed to interpret the parent CRM entity.- Enables: Compare the exact Gong API-configured fields set in
crm_entities.fieldsfor each CRM entity; preserve provider labels and unknown entries. - Interpretation: Gong API returns fields as an array of field entries on each CRM entity; missing, empty, and permission-redacted arrays are not equivalent.
Modified Date
Modified Date
crm_entities.fields.modifiedDateModified Date. Last-modified date for the field (ISO-8601). It anchors the CRM entity on the provider’s reported timeline.- Enables: Order CRM Entities by modified date in
crm_entities.fields.modifiedDateand isolate records inside an exact provider reporting window. - Interpretation: Gong API reports modified date as a calendar date on each field; its grain is one day and no time of day should be inferred.
Name
Name
crm_entities.fields.nameName. CRM field name. It gives the field a human-readable provider label while its identifier remains the stable reference.- Enables: Match repeated field entries on name in
crm_entities.fields.name; collapse only entries that share this declared transform key. - Interpretation: Gong API reports name as display text for each field; names are mutable and are not stable identities. The connector explicitly marks this field as a transform deduplication key.
Value
Value
crm_entities.fields.valueValue. CRM field value (stringified). It must be interpreted with the enclosing provider field name, type, or custom schema for the field.- Enables: Interpret
crm_entities.fields.valuewith the enclosing custom field name, declared type, and provider schema; compare only records that share that contract. - Interpretation: Gong API reports value under the enclosing custom or typed field contract on each field; compare it only with values from the same provider key and type.
Modified Date
Modified Date
crm_entities.modifiedDateModified Date. Last modified timestamp. It anchors the CRM entity on the provider’s reported timeline.- Enables: Order CRM Entities by modified date in
crm_entities.modifiedDateand isolate records inside an exact provider reporting window. - Interpretation: Gong API reports modified date as a calendar date on each CRM entity; its grain is one day and no time of day should be inferred. A connector directive uses this field to order records for latest-state or incremental processing.
Object ID
Object ID
crm_entities.objectIdObject ID. Unique identifier. It provides the reference needed to connect the CRM entity to the corresponding provider object.- Enables: Match repeated CRM entity entries on object ID in
crm_entities.objectId; collapse only entries that share this declared transform key. - Interpretation: Gong API reports object ID as an identifier in its object namespace; it is not a universal identity outside Gong API. The connector explicitly marks this field as a transform deduplication key.
Object Type
Object Type
crm_entities.objectTypeObject Type. CRM entity type. It distinguishes the provider-defined object type state or classification for the CRM entity.- Enables: Segment CRM entity entries in CRM Entities by object type in
crm_entities.objectType; compare counts only within the same Gong API taxonomy. - Interpretation: Gong API reports object type as a label from its own taxonomy on each CRM entity; preserve unknown labels rather than mapping them by assumption.
System ID
System ID
crm_entities.systemIdSystem ID. ID in source CRM. It provides the reference needed to connect the CRM entity to the corresponding provider object.- Enables: Connect each CRM entity in CRM Entities to the referenced system through
crm_entities.systemId; flag system ID values that do not resolve in that provider namespace. - Interpretation: Gong API reports system ID as an identifier in its system namespace; it is not a universal identity outside Gong API.
Title
Title
crm_entities.titleTitle. Display title. It gives the CRM entity a human-readable provider label while its identifier remains the stable reference.- Enables: Label each CRM entity with title from
crm_entities.title; distinguish records that share that display name but have different Gong API identifiers. - Interpretation: Gong API reports title as display text for each CRM entity; names are mutable and are not stable identities.
URL
URL
crm_entities.urlURL. URL in source CRM. It locates the provider resource or path associated with the CRM entity.- Enables: Associate each CRM entity with the resource identified by URL in
crm_entities.url; verify the link resolves to the expected Gong API object. - Interpretation: Gong API reports URL as a resource locator for each CRM entity; access still depends on viewer permissions and the URL may expire or change.
CRM Integrations
CRM Integrations
crm_integrationsCRM Integrations. Retrieve CRM integration configuration from Gong. Returns details about connected CRM systems, schema fields, deal stages, and object mappings.- Enables: Inventory connected CRM systems and reconcile their object mappings, schema fields, and deal-stage configuration.
- Scope: Reads the records selected by Gong API’s
/{apiVersion}/crm/integrationsoperation as a snapshot stream using full synchronization. Visibility follows the Gong API credential, workspace access, and the endpoint’s content-selection settings. The stream does not include records the credential, parent traversal, configured filters, or provider API omits. A later complete read can treat a previously seen record that is absent as removed.
CRM Type
CRM Type
crm_integrations.crmTypeCRM Type. Type of CRM (e.g., Salesforce, HubSpot). It distinguishes the provider-defined CRM type state or classification for the CRM integration.- Enables: Segment CRM integration entries in CRM Integrations by CRM type in
crm_integrations.crmType; compare counts only within the same Gong API taxonomy. - Interpretation: Gong API reports CRM type as a label from its own taxonomy on each CRM integration; preserve unknown labels rather than mapping them by assumption.
Deal Stages
Deal Stages
crm_integrations.dealStagesDeal Stages. Deal-stage mapping for the CRM integration. It preserves the nested context needed to interpret the parent CRM integration.- Enables: Compare the exact Gong API-configured deal stages set in
crm_integrations.dealStagesfor each CRM integration; preserve provider labels and unknown entries. - Interpretation: Gong API returns deal stages as an array of deal stage entries on each CRM integration; missing, empty, and permission-redacted arrays are not equivalent.
Is Closed Won
Is Closed Won
crm_integrations.dealStages.isClosedWonIs Closed Won. The provider-reported is closed won for each deal stage in CRM Integrations. It distinguishes the provider-defined is closed won state or classification for the deal stage.- Enables: Filter CRM Integrations by whether is closed won in
crm_integrations.dealStages.isClosedWon; count true, false, and missing results separately. - Interpretation: Gong API reports is closed won as a boolean on each deal stage; a missing field is unknown, not false.
Stage ID
Stage ID
crm_integrations.dealStages.stageIdStage ID. CRM stage ID. It provides the reference needed to connect the CRM integration to the corresponding provider object.- Enables: Match repeated deal stage entries on stage ID in
crm_integrations.dealStages.stageId; collapse only entries that share this declared transform key. - Interpretation: Gong API reports stage ID as an identifier in its stage namespace; it is not a universal identity outside Gong API. The connector explicitly marks this field as a transform deduplication key.
Stage Name
Stage Name
crm_integrations.dealStages.stageNameStage Name. The provider-reported stage name for each deal stage in CRM Integrations. It gives the deal stage a human-readable provider label while its identifier remains the stable reference.- Enables: Label each deal stage with stage name from
crm_integrations.dealStages.stageName; distinguish records that share that display name but have different Gong API identifiers. - Interpretation: Gong API reports stage name as display text for each deal stage; names are mutable and are not stable identities.
Stage Order
Stage Order
crm_integrations.dealStages.stageOrderStage Order. Display order of the stage in the funnel. It distinguishes the provider-defined stage order state or classification for the deal stage.- Enables: Filter CRM Integrations by the exact Gong API-defined stage order in
crm_integrations.dealStages.stageOrderand preserve unknown values as distinct categories. - Interpretation: Gong API supplies stage order from its own taxonomy on each deal stage; preserve unknown and newly introduced labels.
Integration ID
Integration ID
crm_integrations.integrationIdIntegration ID. Unique identifier for the CRM integration. It provides the reference needed to connect the CRM integration to the corresponding provider object.- Enables: Match repeated CRM integration entries on integration ID in
crm_integrations.integrationId; collapse only entries that share this declared transform key. - Interpretation: Gong API reports integration ID as an identifier in its integration namespace; it is not a universal identity outside Gong API. The connector explicitly marks this field as a transform deduplication key.
Object Types
Object Types
crm_integrations.objectTypesObject Types. CRM object types configured for this integration. It preserves the nested context needed to interpret the parent CRM integration.- Enables: Compare the exact Gong API-configured object types set in
crm_integrations.objectTypesfor each CRM integration; preserve provider labels and unknown entries. - Interpretation: Gong API returns object types as an array of object type entries on each CRM integration; missing, empty, and permission-redacted arrays are not equivalent.
Object Type
Object Type
crm_integrations.objectTypes.objectTypeObject Type. CRM object type name. It distinguishes the provider-defined object type state or classification for the object type.- Enables: Match repeated object type entries on object type in
crm_integrations.objectTypes.objectType; collapse only entries that share this declared transform key. - Interpretation: Gong API reports object type as a label from its own taxonomy on each object type; preserve unknown labels rather than mapping them by assumption. The connector explicitly marks this field as a transform deduplication key.
Schema Fields
Schema Fields
crm_integrations.objectTypes.schemaFieldsSchema Fields. Schema fields for this object type. It preserves the nested context needed to interpret the parent CRM integration.- Enables: Compare the exact Gong API-configured schema fields set in
crm_integrations.objectTypes.schemaFieldsfor each object type; preserve provider labels and unknown entries. - Interpretation: Gong API returns schema fields as an array of schema field entries on each object type; missing, empty, and permission-redacted arrays are not equivalent.
Status
Status
crm_integrations.statusStatus. Integration status. It distinguishes the provider-defined status state or classification for the CRM integration.- Enables: Segment CRM integration entries in CRM Integrations by status in
crm_integrations.status; compare counts only within the same Gong API taxonomy. - Interpretation: Gong API reports status as a label from its own taxonomy on each CRM integration; preserve unknown labels rather than mapping them by assumption.
Daily Activity
Daily Activity
daily_activityDaily Activity. Retrieve day-by-day activity statistics for users. Returns one row per user (with a dayActivity array) snapshotting the configured incremental window. cursorField is fromDate, the window-start filter sent in the request body, since aggregate responses have no per-record timestamp.- Enables: Measure each user’s provider-reported daily activity counts inside the configured request window.
- Scope: Reads the records selected by Gong API’s
/{apiVersion}/stats/activity/day-by-dayoperation as a snapshot stream using incremental synchronization. Visibility follows the Gong API credential, workspace access, and the endpoint’s content-selection settings. Aggregate activity counts reflect Gong’s definitions and the configured request window; they do not establish work quality or employee performance. This stream supplies no reliable deletion signal.
User Daily Activity Stats
User Daily Activity Stats
daily_activity.userDailyActivityStatsUser Daily Activity Stats. Daily activity records. Each metric is an array of call IDs contributing to that metric for the day window. It preserves the nested context needed to interpret the parent daily activity.- Enables: Measure each returned user daily activity stat in
daily_activity.userDailyActivityStatsat its element and time grain; compare values only when Gong API reports the same unit and aggregation. - Interpretation: Gong API returns user daily activity stats as an array of user daily activity stat entries on each daily activity; missing, empty, and permission-redacted arrays are not equivalent.
Calls As Host
Calls As Host
daily_activity.userDailyActivityStats.callsAsHostCalls As Host. Call IDs where the user was host. It preserves the nested context needed to interpret the parent daily activity.- Enables: Connect the parent daily activity to every referenced calls as host value in
daily_activity.userDailyActivityStats.callsAsHost; identify provider IDs that do not resolve to the expected related object. - Interpretation: Gong API returns calls as host as an array of calls as host value entries on each user daily activity stat; missing, empty, and permission-redacted arrays are not equivalent.
Calls Attended
Calls Attended
daily_activity.userDailyActivityStats.callsAttendedCalls Attended. Call IDs the user attended. It preserves the nested context needed to interpret the parent daily activity.- Enables: Connect the parent daily activity to every referenced calls attended value in
daily_activity.userDailyActivityStats.callsAttended; identify provider IDs that do not resolve to the expected related object. - Interpretation: Gong API returns calls attended as an array of calls attended value entries on each user daily activity stat; missing, empty, and permission-redacted arrays are not equivalent.
Calls Comments Given
Calls Comments Given
daily_activity.userDailyActivityStats.callsCommentsGivenCalls Comments Given. Call IDs where the user gave comments. It preserves the nested context needed to interpret the parent daily activity.- Enables: Connect the parent daily activity to every referenced calls comments given value in
daily_activity.userDailyActivityStats.callsCommentsGiven; identify provider IDs that do not resolve to the expected related object. - Interpretation: Gong API returns calls comments given as an array of calls comments given value entries on each user daily activity stat; missing, empty, and permission-redacted arrays are not equivalent.
Calls Comments Received
Calls Comments Received
daily_activity.userDailyActivityStats.callsCommentsReceivedCalls Comments Received. Call IDs where the user received comments. It preserves the nested context needed to interpret the parent daily activity.- Enables: Connect the parent daily activity to every referenced calls comments received value in
daily_activity.userDailyActivityStats.callsCommentsReceived; identify provider IDs that do not resolve to the expected related object. - Interpretation: Gong API returns calls comments received as an array of calls comments received value entries on each user daily activity stat; missing, empty, and permission-redacted arrays are not equivalent.
Calls Gave Feedback
Calls Gave Feedback
daily_activity.userDailyActivityStats.callsGaveFeedbackCalls Gave Feedback. Call IDs where the user gave feedback. It preserves the nested context needed to interpret the parent daily activity.- Enables: Connect the parent daily activity to every referenced calls gave feedback value in
daily_activity.userDailyActivityStats.callsGaveFeedback; identify provider IDs that do not resolve to the expected related object. - Interpretation: Gong API returns calls gave feedback as an array of calls gave feedback value entries on each user daily activity stat; missing, empty, and permission-redacted arrays are not equivalent.
Calls Marked As Feedback Given
Calls Marked As Feedback Given
daily_activity.userDailyActivityStats.callsMarkedAsFeedbackGivenCalls Marked As Feedback Given. Call IDs marked as feedback given. It preserves the nested context needed to interpret the parent daily activity.- Enables: Connect the parent daily activity to every referenced calls marked as feedback given value in
daily_activity.userDailyActivityStats.callsMarkedAsFeedbackGiven; identify provider IDs that do not resolve to the expected related object. - Interpretation: Gong API returns calls marked as feedback given as an array of calls marked as feedback given value entries on each user daily activity stat; missing, empty, and permission-redacted arrays are not equivalent.
Calls Marked As Feedback Received
Calls Marked As Feedback Received
daily_activity.userDailyActivityStats.callsMarkedAsFeedbackReceivedCalls Marked As Feedback Received. Call IDs marked as feedback received. It preserves the nested context needed to interpret the parent daily activity.- Enables: Connect the parent daily activity to every referenced calls marked as feedback received value in
daily_activity.userDailyActivityStats.callsMarkedAsFeedbackReceived; identify provider IDs that do not resolve to the expected related object. - Interpretation: Gong API returns calls marked as feedback received as an array of calls marked as feedback received value entries on each user daily activity stat; missing, empty, and permission-redacted arrays are not equivalent.
Calls Received Feedback
Calls Received Feedback
daily_activity.userDailyActivityStats.callsReceivedFeedbackCalls Received Feedback. Call IDs where the user received feedback. It preserves the nested context needed to interpret the parent daily activity.- Enables: Connect the parent daily activity to every referenced calls received feedback value in
daily_activity.userDailyActivityStats.callsReceivedFeedback; identify provider IDs that do not resolve to the expected related object. - Interpretation: Gong API returns calls received feedback as an array of calls received feedback value entries on each user daily activity stat; missing, empty, and permission-redacted arrays are not equivalent.
Calls Requested Feedback
Calls Requested Feedback
daily_activity.userDailyActivityStats.callsRequestedFeedbackCalls Requested Feedback. Call IDs where the user requested feedback. It preserves the nested context needed to interpret the parent daily activity.- Enables: Connect the parent daily activity to every referenced calls requested feedback value in
daily_activity.userDailyActivityStats.callsRequestedFeedback; identify provider IDs that do not resolve to the expected related object. - Interpretation: Gong API returns calls requested feedback as an array of calls requested feedback value entries on each user daily activity stat; missing, empty, and permission-redacted arrays are not equivalent.
Calls Scorecards Filled
Calls Scorecards Filled
daily_activity.userDailyActivityStats.callsScorecardsFilledCalls Scorecards Filled. Call IDs with scorecards filled. It preserves the nested context needed to interpret the parent daily activity.- Enables: Connect the parent daily activity to every referenced calls scorecards filled value in
daily_activity.userDailyActivityStats.callsScorecardsFilled; identify provider IDs that do not resolve to the expected related object. - Interpretation: Gong API returns calls scorecards filled as an array of calls scorecards filled value entries on each user daily activity stat; missing, empty, and permission-redacted arrays are not equivalent.
Calls Scorecards Received
Calls Scorecards Received
daily_activity.userDailyActivityStats.callsScorecardsReceivedCalls Scorecards Received. Call IDs with scorecards received. It preserves the nested context needed to interpret the parent daily activity.- Enables: Connect the parent daily activity to every referenced calls scorecards received value in
daily_activity.userDailyActivityStats.callsScorecardsReceived; identify provider IDs that do not resolve to the expected related object. - Interpretation: Gong API returns calls scorecards received as an array of calls scorecards received value entries on each user daily activity stat; missing, empty, and permission-redacted arrays are not equivalent.
Calls Shared Externally
Calls Shared Externally
daily_activity.userDailyActivityStats.callsSharedExternallyCalls Shared Externally. Call IDs shared externally. It preserves the nested context needed to interpret the parent daily activity.- Enables: Connect the parent daily activity to every referenced calls shared externally value in
daily_activity.userDailyActivityStats.callsSharedExternally; identify provider IDs that do not resolve to the expected related object. - Interpretation: Gong API returns calls shared externally as an array of calls shared externally value entries on each user daily activity stat; missing, empty, and permission-redacted arrays are not equivalent.
Calls Shared Internally
Calls Shared Internally
daily_activity.userDailyActivityStats.callsSharedInternallyCalls Shared Internally. Call IDs shared internally. It preserves the nested context needed to interpret the parent daily activity.- Enables: Connect the parent daily activity to every referenced calls shared internally value in
daily_activity.userDailyActivityStats.callsSharedInternally; identify provider IDs that do not resolve to the expected related object. - Interpretation: Gong API returns calls shared internally as an array of calls shared internally value entries on each user daily activity stat; missing, empty, and permission-redacted arrays are not equivalent.
From Date
From Date
daily_activity.userDailyActivityStats.fromDateFrom Date. Start of the day window (ISO-8601). It anchors the daily activity on the provider’s reported timeline.- Enables: Match repeated user daily activity stat entries on from date in
daily_activity.userDailyActivityStats.fromDate; collapse only entries that share this declared transform key. - Interpretation: Gong API reports from date as a timestamp on each user daily activity stat; timezone and precision follow this API field, and absence is not an inferred event time. The connector explicitly marks this field as a transform deduplication key.
Others Calls Listened To
Others Calls Listened To
daily_activity.userDailyActivityStats.othersCallsListenedToOthers Calls Listened To. Others’ call IDs listened to. It preserves the nested context needed to interpret the parent daily activity.- Enables: Attribute each returned others calls listened to value in
daily_activity.userDailyActivityStats.othersCallsListenedToto the parent daily activity; preserve whether the field represents an attendee, To, Cc, or Bcc relationship. - Interpretation: Gong API returns others calls listened to as an array of others calls listened to value entries on each user daily activity stat; missing, empty, and permission-redacted arrays are not equivalent.
Own Calls Listened To
Own Calls Listened To
daily_activity.userDailyActivityStats.ownCallsListenedToOwn Calls Listened To. Own call IDs listened to. It preserves the nested context needed to interpret the parent daily activity.- Enables: Attribute each returned own calls listened to value in
daily_activity.userDailyActivityStats.ownCallsListenedToto the parent daily activity; preserve whether the field represents an attendee, To, Cc, or Bcc relationship. - Interpretation: Gong API returns own calls listened to as an array of own calls listened to value entries on each user daily activity stat; missing, empty, and permission-redacted arrays are not equivalent.
To Date
To Date
daily_activity.userDailyActivityStats.toDateTo Date. End of the day window (ISO-8601). It anchors the daily activity on the provider’s reported timeline.- Enables: Order Daily Activity by to date in
daily_activity.userDailyActivityStats.toDateand isolate records inside an exact provider reporting window. - Interpretation: Gong API reports to date as a timestamp on each user daily activity stat; timezone and precision follow this API field, and absence is not an inferred event time.
User Email Address
User Email Address
daily_activity.userEmailAddressUser Email Address. Email address of the user. It supplies the provider-reported address or location facet for the daily activity, not a residency determination.- Enables: Attribute each daily activity to a person or account by the exact user email address in
daily_activity.userEmailAddress; identify addresses that do not match the Gong API directory. - Interpretation: Gong API reports user email address as an address on each daily activity; aliases, casing, and unverified addresses can prevent a one-to-one person match.
User ID
User ID
daily_activity.userIdUser ID. User ID. It provides the reference needed to connect the daily activity to the corresponding provider object.- Enables: Match repeated daily activity entries on user ID in
daily_activity.userId; collapse only entries that share this declared transform key. - Interpretation: Gong API reports user ID as an identifier in its user namespace; it is not a universal identity outside Gong API. The connector explicitly marks this field as a transform deduplication key.
Interaction Stats
Interaction Stats
interaction_statsInteraction Stats. Retrieves interaction statistics for users including coaching and whisper call metrics. Provides data on manager-rep interaction patterns.- Enables: Measure provider-reported manager and representative interaction, coaching, and whisper-call counts by user and period.
- Scope: Reads the records selected by Gong API’s
/{apiVersion}/stats/interactionoperation as an event stream using incremental synchronization. This stream is opt-in. Visibility follows the Gong API credential, workspace access, and the endpoint’s content-selection settings. Coaching and interaction measures reflect Gong’s definitions and do not establish work quality or employee performance. This stream supplies no reliable deletion signal.
Person Interaction Stats
Person Interaction Stats
interaction_stats.personInteractionStatsPerson Interaction Stats. Interaction statistics for the user. Metric names include: Longest Monologue, Longest Customer Story, Interactivity, Patience, Question Rate. It preserves the nested context needed to interpret the parent interaction stat.- Enables: Measure each returned person interaction stat in
interaction_stats.personInteractionStatsat its element and time grain; compare values only when Gong API reports the same unit and aggregation. - Interpretation: Gong API returns person interaction stats as an array of person interaction stat entries on each interaction stat; missing, empty, and permission-redacted arrays are not equivalent.
Name
Name
interaction_stats.personInteractionStats.nameName. Name of the interaction metric. It gives the person interaction stat a human-readable provider label while its identifier remains the stable reference.- Enables: Match repeated person interaction stat entries on name in
interaction_stats.personInteractionStats.name; collapse only entries that share this declared transform key. - Interpretation: Gong API reports name as display text for each person interaction stat; names are mutable and are not stable identities. The connector explicitly marks this field as a transform deduplication key.
Value
Value
interaction_stats.personInteractionStats.valueValue. Numeric value of the metric. It must be interpreted with the enclosing provider field name, type, or custom schema for the person interaction stat.- Enables: Interpret
interaction_stats.personInteractionStats.valuewith the enclosing custom field name, declared type, and provider schema; compare only records that share that contract. - Interpretation: Gong API reports value under the enclosing custom or typed field contract on each person interaction stat; compare it only with values from the same provider key and type.
User Email Address
User Email Address
interaction_stats.userEmailAddressUser Email Address. Email address of the Gong user. It supplies the provider-reported address or location facet for the interaction stat, not a residency determination.- Enables: Attribute each interaction stat to a person or account by the exact user email address in
interaction_stats.userEmailAddress; identify addresses that do not match the Gong API directory. - Interpretation: Gong API reports user email address as an address on each interaction stat; aliases, casing, and unverified addresses can prevent a one-to-one person match.
User ID
User ID
interaction_stats.userIdUser ID. Gong’s unique numeric identifier for the user. It provides the reference needed to connect the interaction stat to the corresponding provider object.- Enables: Match repeated interaction stat entries on user ID in
interaction_stats.userId; collapse only entries that share this declared transform key. - Interpretation: Gong API reports user ID as an identifier in its user namespace; it is not a universal identity outside Gong API. The connector explicitly marks this field as a transform deduplication key.
Library Folders
Library Folders
library_foldersLibrary Folders. List all public library folders in Gong. Returns folder hierarchy for organizing call recordings.- Enables: Reconstruct the public call-library folder hierarchy and match folders to their parent folder and creator references.
- Scope: Reads the records selected by Gong API’s
/{apiVersion}/library/foldersoperation as a snapshot stream using full synchronization. This stream is opt-in. Visibility follows the Gong API credential, workspace access, and the endpoint’s content-selection settings. The stream does not include records the credential, parent traversal, configured filters, or provider API omits. A later complete read can treat a previously seen record that is absent as removed.
Calls Count
Calls Count
library_folders.callsCountCalls Count. Number of calls. It supplies the calls count measure for the library folder at the provider’s declared unit and grain.- Enables: Measure calls count through
library_folders.callsCountfor each library folder and compare only values with the same unit and record grain. - Interpretation: Gong API reports calls count as a measure on each library folder; compare only records with the same unit and aggregation grain.
Creation Date Time
Creation Date Time
library_folders.creationDateTimeCreation Date Time. Creation timestamp. It anchors the library folder on the provider’s reported timeline.- Enables: Order Library Folders by creation date time in
library_folders.creationDateTimeand isolate records inside an exact provider reporting window. - Interpretation: Gong API reports creation date time as a timestamp on each library folder; timezone and precision follow this API field, and absence is not an inferred event time.
Creator User ID
Creator User ID
library_folders.creatorUserIdCreator User ID. Creator user ID. It provides the reference needed to connect the library folder to the corresponding provider object.- Enables: Connect each library folder in Library Folders to the referenced creator user through
library_folders.creatorUserId; flag creator user ID values that do not resolve in that provider namespace. - Interpretation: Gong API reports creator user ID as an identifier in its creator user namespace; it is not a universal identity outside Gong API.
Description
Description
library_folders.descriptionDescription. Folder description. It defines the content surface available for this library folder.- Enables: Locate library folder records by description in
library_folders.description; attribute each text match to its parent library folder and, when present, its reported author. - Interpretation: Gong supplies this call content; provider-generated excerpts or summaries may omit context and are not Parable-authored assessments.
ID
ID
library_folders.idID. Unique identifier. It provides the reference needed to connect the library folder to the corresponding provider object.- Enables: Match repeated library folder entries on ID in
library_folders.id; collapse only entries that share this declared transform key. - Interpretation: Gong API reports ID as an identifier in its library folder namespace; it is not a universal identity outside Gong API. The connector explicitly marks this field as a transform deduplication key.
Name
Name
library_folders.nameName. Display name. It gives the library folder a human-readable provider label while its identifier remains the stable reference.- Enables: Label each library folder with name from
library_folders.name; distinguish records that share that display name but have different Gong API identifiers. - Interpretation: Gong API reports name as display text for each library folder; names are mutable and are not stable identities.
Parent ID
Parent ID
library_folders.parentIdParent ID. Parent folder ID. It provides the reference needed to connect the library folder to the corresponding provider object.- Enables: Connect each library folder in Library Folders to the referenced parent through
library_folders.parentId; flag parent ID values that do not resolve in that provider namespace. - Interpretation: Gong API reports parent ID as an identifier in its parent namespace; it is not a universal identity outside Gong API.
Sub Folders Count
Sub Folders Count
library_folders.subFoldersCountSub Folders Count. Number of sub-folders. It supplies the sub folders count measure for the library folder at the provider’s declared unit and grain.- Enables: Measure sub folders count through
library_folders.subFoldersCountfor each library folder and compare only values with the same unit and record grain. - Interpretation: Gong API reports sub folders count as a measure on each library folder; compare only records with the same unit and aggregation grain.
Updated Date Time
Updated Date Time
library_folders.updatedDateTimeUpdated Date Time. Last update timestamp. It anchors the library folder on the provider’s reported timeline.- Enables: Order Library Folders by updated date time in
library_folders.updatedDateTimeand isolate records inside an exact provider reporting window. - Interpretation: Gong API reports updated date time as a timestamp on each library folder; timezone and precision follow this API field, and absence is not an inferred event time. A connector directive uses this field to order records for latest-state or incremental processing.
Workspace ID
Workspace ID
library_folders.workspaceIdWorkspace ID. Workspace ID. It provides the reference needed to connect the library folder to the corresponding provider object.- Enables: Connect each library folder in Library Folders to the referenced workspace through
library_folders.workspaceId; flag workspace ID values that do not resolve in that provider namespace. - Interpretation: Gong API reports workspace ID as an identifier in its workspace namespace; it is not a universal identity outside Gong API.
Logs
Logs
logsLogs. List log entries from Gong by type and time range. Returns audit/activity log entries for compliance and monitoring.- Enables: Trace provider log entries to their log type, actor or user, affected object, and reported time window.
- Scope: Reads the records selected by Gong API’s
/{apiVersion}/logsoperation as an event stream using incremental synchronization. Visibility follows the Gong API credential, workspace access, and the endpoint’s content-selection settings. The stream does not include records the credential, parent traversal, configured filters, or provider API omits. This stream supplies no reliable deletion signal.
Event Time
Event Time
logs.eventTimeEvent Time. Timestamp of the event. It anchors the log on the provider’s reported timeline.- Enables: Match repeated log entries on event time in
logs.eventTime; collapse only entries that share this declared transform key. - Interpretation: Gong API reports event time as a timestamp on each log; timezone and precision follow this API field, and absence is not an inferred event time. The connector explicitly marks this field as a transform deduplication key. A connector directive uses this field to order records for latest-state or incremental processing. The schema designates this field as the event timestamp.
Log Record
Log Record
logs.logRecordLog Record. Per-log-type record payload. Shape varies with the logType request parameter (e.g., UserActivityLog carries auditId, tableChanges, customData, httpRequest). Stored as an opaque key-value map; downstream consumers branch on the requested logType. It preserves the nested context needed to interpret the parent log.- Enables: Attribute log record in
logs.logRecordto the parent log; identify parent records where that nested log record object is absent. - Interpretation: Gong API reports log record as a nested object on each log; optional children may be absent from a valid response.
User Email Address
User Email Address
logs.userEmailAddressUser Email Address. Email of the user. It supplies the provider-reported address or location facet for the log, not a residency determination.- Enables: Attribute each log to a person or account by the exact user email address in
logs.userEmailAddress; identify addresses that do not match the Gong API directory. - Interpretation: Gong API reports user email address as an address on each log; aliases, casing, and unverified addresses can prevent a one-to-one person match.
User Full Name
User Full Name
logs.userFullNameUser Full Name. Full name of the user. It gives the log a human-readable provider label while its identifier remains the stable reference.- Enables: Label each log with user full name from
logs.userFullName; distinguish records that share that display name but have different Gong API identifiers. - Interpretation: Gong API reports user full name as display text for each log; names are mutable and are not stable identities.
User ID
User ID
logs.userIdUser ID. User who triggered the event. It provides the reference needed to connect the log to the corresponding provider object.- Enables: Connect each log in Logs to the referenced user through
logs.userId; flag user ID values that do not resolve in that provider namespace. - Interpretation: Gong API reports user ID as an identifier in its user namespace; it is not a universal identity outside Gong API.
Manual CRM Associations
Manual CRM Associations
manual_crm_associationsManual CRM Associations. List calls that have been manually associated with CRM objects since a given time. Returns association mappings between calls and CRM entities.- Enables: Match each manual association to its Gong call, CRM object type, CRM object identifier, and association timestamp.
- Scope: Reads the records selected by Gong API’s
/{apiVersion}/calls/manual-crm-associationsoperation as an event stream using incremental synchronization. Visibility follows the Gong API credential, workspace access, and the endpoint’s content-selection settings. The stream does not include records the credential, parent traversal, configured filters, or provider API omits. This stream supplies no reliable deletion signal.
Associated CRM Objects
Associated CRM Objects
manual_crm_associations.associatedCrmObjectsAssociated CRM Objects. List of all association objects for the call. It preserves the nested context needed to interpret the parent manual CRM association.- Enables: Attribute every returned associated CRM object in
manual_crm_associations.associatedCrmObjectsto its parent manual CRM association; keep each relationship distinct and distinguish an absent array from an explicitly empty one. - Interpretation: Gong API returns associated CRM objects as an array of associated CRM object entries on each manual CRM association; missing, empty, and permission-redacted arrays are not equivalent.
Account Crm ID
Account Crm ID
manual_crm_associations.associatedCrmObjects.accountCrmIdAccount Crm ID. CRM account ID. It provides the reference needed to connect the manual CRM association to the corresponding provider object.- Enables: Match repeated associated CRM object entries on account CRM ID in
manual_crm_associations.associatedCrmObjects.accountCrmId; collapse only entries that share this declared transform key. - Interpretation: Gong API reports account CRM ID as an identifier in its account CRM namespace; it is not a universal identity outside Gong API. The connector explicitly marks this field as a transform deduplication key.
Deal Crm ID
Deal Crm ID
manual_crm_associations.associatedCrmObjects.dealCrmIdDeal Crm ID. CRM deal/opportunity ID, if a deal was associated. It provides the reference needed to connect the manual CRM association to the corresponding provider object.- Enables: Connect each associated CRM object in Manual CRM Associations to the referenced deal CRM through
manual_crm_associations.associatedCrmObjects.dealCrmId; flag deal CRM ID values that do not resolve in that provider namespace. - Interpretation: Gong API reports deal CRM ID as an identifier in its deal CRM namespace; it is not a universal identity outside Gong API.
Call ID
Call ID
manual_crm_associations.callIdCall ID. Gong’s unique numeric identifier for the call. It provides the reference needed to connect the manual CRM association to the corresponding provider object.- Enables: Match repeated manual CRM association entries on call ID in
manual_crm_associations.callId; collapse only entries that share this declared transform key. - Interpretation: Gong API reports call ID as an identifier in its call namespace; it is not a universal identity outside Gong API. The connector explicitly marks this field as a transform deduplication key.
Created
Created
manual_crm_associations.createdCreated. The association date (ISO-8601). It anchors the manual CRM association on the provider’s reported timeline.- Enables: Order Manual CRM Associations by created in
manual_crm_associations.createdand isolate records inside an exact provider reporting window. - Interpretation: Gong API reports created as a timestamp on each manual CRM association; timezone and precision follow this API field, and absence is not an inferred event time. A connector directive uses this field to order records for latest-state or incremental processing. The schema designates this field as the event timestamp.
User ID
User ID
manual_crm_associations.userIdUser ID. ID of the user who performed the association. It provides the reference needed to connect the manual CRM association to the corresponding provider object.- Enables: Connect each manual CRM association in Manual CRM Associations to the referenced user through
manual_crm_associations.userId; flag user ID values that do not resolve in that provider namespace. - Interpretation: Gong API reports user ID as an identifier in its user namespace; it is not a universal identity outside Gong API.
Meetings
Meetings
meetingsMeetings. DISABLED: Gong has no list meetings API. Meeting metadata (meetingUrl, calendarEventId, schedule) is available on calls and calls_extensive. Enable only if a future Gong list endpoint is added.- Enables: Reserve the disabled meeting shape for a future list operation; current meeting metadata must be read from call records.
- Scope: Reads the records selected by Gong API’s
/{apiVersion}/meetingsoperation as a changelog stream using incremental synchronization. This stream is opt-in. Visibility follows the Gong API credential, workspace access, and the endpoint’s content-selection settings. This stream is disabled because Gong exposes no meeting-list operation; call records remain the supported source of meeting URL, calendar event, and schedule metadata. This stream supplies no reliable deletion signal.
Attendees
Attendees
meetings.attendeesAttendees. List of meeting attendees. It preserves the nested context needed to interpret the parent meeting.- Enables: Attribute each returned attendee in
meetings.attendeesto the parent meeting; preserve whether the field represents an attendee, To, Cc, or Bcc relationship. - Interpretation: Gong API returns attendees as an array of attendee entries on each meeting; missing, empty, and permission-redacted arrays are not equivalent.
Email Address
Email Address
meetings.attendees.emailAddressEmail Address. Attendee email address. It supplies the provider-reported address or location facet for the attendee, not a residency determination.- Enables: Match repeated attendee entries on email address in
meetings.attendees.emailAddress; collapse only entries that share this declared transform key. - Interpretation: Gong API reports email address as an address on each attendee; aliases, casing, and unverified addresses can prevent a one-to-one person match. The connector explicitly marks this field as a transform deduplication key.
Name
Name
meetings.attendees.nameName. Attendee display name. It gives the attendee a human-readable provider label while its identifier remains the stable reference.- Enables: Label each attendee with name from
meetings.attendees.name; distinguish records that share that display name but have different Gong API identifiers. - Interpretation: Gong API reports name as display text for each attendee; names are mutable and are not stable identities.
Call ID
Call ID
meetings.callIdCall ID. Associated call ID if the meeting was recorded. It provides the reference needed to connect the meeting to the corresponding provider object.- Enables: Connect each meeting in Meetings to the referenced call through
meetings.callId; flag call ID values that do not resolve in that provider namespace. - Interpretation: Gong API reports call ID as an identifier in its call namespace; it is not a universal identity outside Gong API.
ID
ID
meetings.idID. Unique identifier for the meeting. It provides the reference needed to connect the meeting to the corresponding provider object.- Enables: Match repeated meeting entries on ID in
meetings.id; collapse only entries that share this declared transform key. - Interpretation: Gong API reports ID as an identifier in its meeting namespace; it is not a universal identity outside Gong API. The connector explicitly marks this field as a transform deduplication key.
Meeting URL
Meeting URL
meetings.meetingUrlMeeting URL. URL of the meeting. It locates the provider resource or path associated with the meeting.- Enables: Associate each meeting with the resource identified by meeting URL in
meetings.meetingUrl; verify the link resolves to the expected Gong API object. - Interpretation: Gong API reports meeting URL as a resource locator for each meeting; access still depends on viewer permissions and the URL may expire or change.
Organizer Email Address
Organizer Email Address
meetings.organizerEmailAddressOrganizer Email Address. Email address of the meeting organizer. It supplies the provider-reported address or location facet for the meeting, not a residency determination.- Enables: Attribute each meeting to a person or account by the exact organizer email address in
meetings.organizerEmailAddress; identify addresses that do not match the Gong API directory. - Interpretation: Gong API reports organizer email address as an address on each meeting; aliases, casing, and unverified addresses can prevent a one-to-one person match.
Scheduled Time
Scheduled Time
meetings.scheduledTimeScheduled Time. Scheduled time of the meeting in ISO-8601 format. It is needed to place the meeting on the provider timeline at the field’s stated precision.- Enables: Order Meetings by the provider-reported instant in
meetings.scheduledTimeand isolate records inside the same time window and precision. - Interpretation: Gong API reports scheduled time as a time value for each meeting; format, timezone, precision, and absolute-versus-relative meaning follow this field’s contract. A connector directive uses this field to order records for latest-state or incremental processing.
Title
Title
meetings.titleTitle. Title or subject of the meeting. It supplies the returned title text needed to understand the meeting in context.- Enables: Label each meeting with title from
meetings.title; distinguish records that share that display name but have different Gong API identifiers. - Interpretation: Gong API reports title as display text for each meeting; names are mutable and are not stable identities.
Workspace ID
Workspace ID
meetings.workspaceIdWorkspace ID. Workspace the meeting belongs to. It provides the reference needed to connect the meeting to the corresponding provider object.- Enables: Connect each meeting in Meetings to the referenced workspace through
meetings.workspaceId; flag workspace ID values that do not resolve in that provider namespace. - Interpretation: Gong API reports workspace ID as an identifier in its workspace namespace; it is not a universal identity outside Gong API.
Permission Profiles
Permission Profiles
permission_profilesPermission Profiles. Retrieve all permission profiles from Gong for each workspace. Returns workspace permission profiles including profile IDs, names, and access settings.- Enables: Match each workspace to its Gong permission profiles, names, and provider-defined access settings.
- Scope: Reads the records selected by Gong API’s
/{apiVersion}/all-permission-profilesoperation as a snapshot stream using full synchronization. Visibility follows the Gong API credential, workspace access, and the endpoint’s content-selection settings. The stream does not include records the credential, parent traversal, configured filters, or provider API omits. A later complete read can treat a previously seen record that is absent as removed.
Description
Description
permission_profiles.descriptionDescription. Permission profile description. It defines the content surface available for this permission profile.- Enables: Locate permission profile records by description in
permission_profiles.description; attribute each text match to its parent permission profile and, when present, its reported author. - Interpretation: Gong supplies this call content; provider-generated excerpts or summaries may omit context and are not Parable-authored assessments.
ID
ID
permission_profiles.idID. Unique identifier for the permission profile. It provides the reference needed to connect the permission profile to the corresponding provider object.- Enables: Match repeated permission profile entries on ID in
permission_profiles.id; collapse only entries that share this declared transform key. - Interpretation: Gong API reports ID as an identifier in its permission profile namespace; it is not a universal identity outside Gong API. The connector explicitly marks this field as a transform deduplication key.
Name
Name
permission_profiles.nameName. Display name of the permission profile. It gives the permission profile a human-readable provider label while its identifier remains the stable reference.- Enables: Label each permission profile with name from
permission_profiles.name; distinguish records that share that display name but have different Gong API identifiers. - Interpretation: Gong API reports name as display text for each permission profile; names are mutable and are not stable identities.
Scorecards
Scorecards
scorecardsScorecards. Retrieve all scorecard definitions/settings from Gong. Returns scorecard templates with their questions and scoring criteria.- Enables: Inventory scorecard definitions and match their questions, scoring criteria, creator, visibility, and active state.
- Scope: Reads the records selected by Gong API’s
/{apiVersion}/settings/scorecardsoperation as a snapshot stream using full synchronization. Visibility follows the Gong API credential, workspace access, and the endpoint’s content-selection settings. Scorecard questions and criteria are authored in Gong; they are not independent Parable assessments of employee performance. A later complete read can treat a previously seen record that is absent as removed.
Created
Created
scorecards.createdCreated. ISO-8601 timestamp of creation. It anchors the scorecard on the provider’s reported timeline.- Enables: Order Scorecards by created in
scorecards.createdand isolate records inside an exact provider reporting window. - Interpretation: Gong API reports created as a timestamp on each scorecard; timezone and precision follow this API field, and absence is not an inferred event time.
Enabled
Enabled
scorecards.enabledEnabled. Whether the scorecard is enabled. It distinguishes the provider-defined enabled state or classification for the scorecard.- Enables: Filter Scorecards by whether the scorecard is enabled in
scorecards.enabled; count true, false, and missing results separately. - Interpretation: Gong API reports the scorecard is enabled as a boolean on each scorecard; a missing field is unknown, not false.
Questions
Questions
scorecards.questionsQuestions. Questions defined in the scorecard. It preserves the nested context needed to interpret the parent scorecard.- Enables: Search the returned questions content in
scorecards.questionswhile preserving element order and attribution to the parent scorecard. - Interpretation: Gong API returns questions as ordered content or provider-generated content metadata on each scorecard; truncation, omission, and inaccessible source media can limit completeness.
Answer Guide
Answer Guide
scorecards.questions.answerGuideAnswer Guide. Scoring guidance/rubric for the question (may contain HTML). It defines the content surface available for this scorecard.- Enables: Locate question records by answer guide in
scorecards.questions.answerGuide; attribute each text match to its parent scorecard and, when present, its reported author. - Interpretation: Gong supplies this call content; provider-generated excerpts or summaries may omit context and are not Parable-authored assessments.
Answer Options
Answer Options
scorecards.questions.answerOptionsAnswer Options. Predefined answer options for choice questions. It preserves the nested context needed to interpret the parent scorecard.- Enables: Search the returned answer options content in
scorecards.questions.answerOptionswhile preserving element order and attribution to the parent scorecard. - Interpretation: Gong API returns answer options as ordered content or provider-generated content metadata on each question; truncation, omission, and inaccessible source media can limit completeness.
Created
Created
scorecards.questions.createdCreated. ISO-8601 timestamp when the question was created. It anchors the scorecard on the provider’s reported timeline.- Enables: Order Scorecards by created in
scorecards.questions.createdand isolate records inside an exact provider reporting window. - Interpretation: Gong API reports created as a timestamp on each question; timezone and precision follow this API field, and absence is not an inferred event time.
Is Overall
Is Overall
scorecards.questions.isOverallIs Overall. Whether this is the overall scorecard rating. It distinguishes the provider-defined is overall state or classification for the question.- Enables: Filter Scorecards by whether this is the overall scorecard rating in
scorecards.questions.isOverall; count true, false, and missing results separately. - Interpretation: Gong API reports this is the overall scorecard rating as a boolean on each question; a missing field is unknown, not false.
Max Range
Max Range
scorecards.questions.maxRangeMax Range. Maximum value for RANGE questions. It supplies the max range boundary, band, or unit needed to interpret the companion measure.- Enables: Interpret
scorecards.questions.maxRangewith its companion minimum, maximum, interval, or unit before comparing the max range across like-for-like records. - Interpretation: Gong API reports max range as a boundary, band, interval, or unit on each question; it is meaningful only with its companion measure and provider scale.
Min Range
Min Range
scorecards.questions.minRangeMin Range. Minimum value for RANGE questions. It supplies the min range boundary, band, or unit needed to interpret the companion measure.- Enables: Interpret
scorecards.questions.minRangewith its companion minimum, maximum, interval, or unit before comparing the min range across like-for-like records. - Interpretation: Gong API reports min range as a boundary, band, interval, or unit on each question; it is meaningful only with its companion measure and provider scale.
Question ID
Question ID
scorecards.questions.questionIdQuestion ID. The provider-reported question ID for each question in Scorecards. It provides the reference needed to connect the scorecard to the corresponding provider object.- Enables: Match repeated question entries on question ID in
scorecards.questions.questionId; collapse only entries that share this declared transform key. - Interpretation: Gong API reports question ID as an identifier in its question namespace; it is not a universal identity outside Gong API. The connector explicitly marks this field as a transform deduplication key.
Question Revision ID
Question Revision ID
scorecards.questions.questionRevisionIdQuestion Revision ID. The provider-reported question revision ID for each question in Scorecards. It provides the reference needed to connect the scorecard to the corresponding provider object.- Enables: Connect each question in Scorecards to the referenced question revision through
scorecards.questions.questionRevisionId; flag question revision ID values that do not resolve in that provider namespace. - Interpretation: Gong API reports question revision ID as an identifier in its question revision namespace; it is not a universal identity outside Gong API.
Question Text
Question Text
scorecards.questions.questionTextQuestion Text. Text of the scorecard question. It defines the content surface available for this scorecard.- Enables: Locate question records by question text in
scorecards.questions.questionText; attribute each text match to its parent scorecard and, when present, its reported author. - Interpretation: Gong supplies this call content; provider-generated excerpts or summaries may omit context and are not Parable-authored assessments.
Question Type
Question Type
scorecards.questions.questionTypeQuestion Type. Question answer type (e.g., RANGE, MULTIPLE_CHOICE). It supplies the question type boundary, band, or unit needed to interpret the companion measure.- Enables: Segment question entries in Scorecards by question type in
scorecards.questions.questionType; compare counts only within the same Gong API taxonomy. - Interpretation: Gong API reports question type as a label from its own taxonomy on each question; preserve unknown labels rather than mapping them by assumption.
Updated
Updated
scorecards.questions.updatedUpdated. ISO-8601 timestamp when the question was last updated. It anchors the scorecard on the provider’s reported timeline.- Enables: Order Scorecards by updated in
scorecards.questions.updatedand isolate records inside an exact provider reporting window. - Interpretation: Gong API reports updated as a timestamp on each question; timezone and precision follow this API field, and absence is not an inferred event time.
Updater User ID
Updater User ID
scorecards.questions.updaterUserIdUpdater User ID. ID of the user who last updated the question. It provides the reference needed to connect the scorecard to the corresponding provider object.- Enables: Connect each question in Scorecards to the referenced updater user through
scorecards.questions.updaterUserId; flag updater user ID values that do not resolve in that provider namespace. - Interpretation: Gong API reports updater user ID as an identifier in its updater user namespace; it is not a universal identity outside Gong API.
Review Method
Review Method
scorecards.reviewMethodReview Method. How the scorecard is reviewed (e.g., MANUAL, AUTOMATIC). It distinguishes the provider-defined review method state or classification for the scorecard.- Enables: Filter Scorecards by the exact Gong API-defined review method in
scorecards.reviewMethodand preserve unknown values as distinct categories. - Interpretation: Gong API supplies review method from its own taxonomy on each scorecard; preserve unknown and newly introduced labels.
Scorecard ID
Scorecard ID
scorecards.scorecardIdScorecard ID. Unique identifier for the scorecard. It provides the reference needed to connect the scorecard to the corresponding provider object.- Enables: Match repeated scorecard entries on scorecard ID in
scorecards.scorecardId; collapse only entries that share this declared transform key. - Interpretation: Gong API reports scorecard ID as an identifier in its scorecard namespace; it is not a universal identity outside Gong API. The connector explicitly marks this field as a transform deduplication key.
Scorecard Name
Scorecard Name
scorecards.scorecardNameScorecard Name. Name of the scorecard. It gives the scorecard a human-readable provider label while its identifier remains the stable reference.- Enables: Label each scorecard with scorecard name from
scorecards.scorecardName; distinguish records that share that display name but have different Gong API identifiers. - Interpretation: Gong API reports scorecard name as display text for each scorecard; names are mutable and are not stable identities.
Updated
Updated
scorecards.updatedUpdated. ISO-8601 timestamp of last update. It anchors the scorecard on the provider’s reported timeline.- Enables: Order Scorecards by updated in
scorecards.updatedand isolate records inside an exact provider reporting window. - Interpretation: Gong API reports updated as a timestamp on each scorecard; timezone and precision follow this API field, and absence is not an inferred event time. A connector directive uses this field to order records for latest-state or incremental processing.
Updater User ID
Updater User ID
scorecards.updaterUserIdUpdater User ID. ID of the user who last updated the scorecard. It provides the reference needed to connect the scorecard to the corresponding provider object.- Enables: Connect each scorecard in Scorecards to the referenced updater user through
scorecards.updaterUserId; flag updater user ID values that do not resolve in that provider namespace. - Interpretation: Gong API reports updater user ID as an identifier in its updater user namespace; it is not a universal identity outside Gong API.
Workspace ID
Workspace ID
scorecards.workspaceIdWorkspace ID. Workspace the scorecard belongs to. It provides the reference needed to connect the scorecard to the corresponding provider object.- Enables: Connect each scorecard in Scorecards to the referenced workspace through
scorecards.workspaceId; flag workspace ID values that do not resolve in that provider namespace. - Interpretation: Gong API reports workspace ID as an identifier in its workspace namespace; it is not a universal identity outside Gong API.
Trackers
Trackers
trackersTrackers. Retrieve all keyword tracker definitions from Gong. Returns tracker configurations including keywords, phrases, and associated settings.- Enables: Inventory Gong-defined tracker phrases and settings while preserving them as provider classifications rather than Parable judgments.
- Scope: Reads the records selected by Gong API’s
/{apiVersion}/settings/trackersoperation as a snapshot stream using full synchronization. This stream is opt-in. Visibility follows the Gong API credential, workspace access, and the endpoint’s content-selection settings. Tracker phrases and matches are Gong or administrator-defined classifications, not Parable-authored judgments. A later complete read can treat a previously seen record that is absent as removed.
Affiliation
Affiliation
trackers.affiliationAffiliation. Who must say the keywords to match. Options: Anyone, Company, NonCompany. It distinguishes the provider-defined affiliation state or classification for the tracker.- Enables: Filter Trackers by the exact Gong API-defined affiliation in
trackers.affiliationand preserve unknown values as distinct categories. - Interpretation: Gong API supplies affiliation from its own taxonomy on each tracker; preserve unknown and newly introduced labels.
Created
Created
trackers.createdCreated. Date/time the tracker was created (ISO-8601). It anchors the tracker on the provider’s reported timeline.- Enables: Order Trackers by created in
trackers.createdand isolate records inside an exact provider reporting window. - Interpretation: Gong API reports created as a timestamp on each tracker; timezone and precision follow this API field, and absence is not an inferred event time. Gong API generated or classified this result; it may be incomplete and is not a Parable-authored judgment.
Creator User ID
Creator User ID
trackers.creatorUserIdCreator User ID. ID of the team member who created the tracker. Null when built-in. It provides the reference needed to connect the tracker to the corresponding provider object.- Enables: Connect each tracker in Trackers to the referenced creator user through
trackers.creatorUserId; flag creator user ID values that do not resolve in that provider namespace. - Interpretation: Gong API reports creator user ID as an identifier in its creator user namespace; it is not a universal identity outside Gong API. Gong API generated or classified this result; it may be incomplete and is not a Parable-authored judgment.
Filter Query
Filter Query
trackers.filterQueryFilter Query. JSON filter defining which calls to include. It must be interpreted with the enclosing provider field name, type, or custom schema for the tracker.- Enables: Interpret
trackers.filterQuerywith the enclosing custom field name, declared type, and provider schema; compare only records that share that contract. - Interpretation: Gong API reports filter query under the enclosing custom or typed field contract on each tracker; compare it only with values from the same provider key and type.
Language Keywords
Language Keywords
trackers.languageKeywordsLanguage Keywords. Words and phrases defined for the tracker, grouped by language. It preserves the nested context needed to interpret the parent tracker.- Enables: Reconcile each returned language keyword in
trackers.languageKeywordswith the parent tracker’s provider profile; preserve distinct aliases, contact points, and organization attributes. - Interpretation: Gong API returns language keywords as an array of language keyword entries on each tracker; missing, empty, and permission-redacted arrays are not equivalent. Gong API generated or classified this result; it may be incomplete and is not a Parable-authored judgment.
Include Related Forms
Include Related Forms
trackers.languageKeywords.includeRelatedFormsInclude Related Forms. When true, matches related word forms (e.g., organize/organized/organizes). It distinguishes the provider-defined include related forms state or classification for the language keyword.- Enables: Filter Trackers by whether when true, matches related word forms (e.g., organize/organized/organizes) in
trackers.languageKeywords.includeRelatedForms; count true, false, and missing results separately. - Interpretation: Gong API reports when true, matches related word forms (e.g., organize/organized/organizes) as a boolean on each language keyword; a missing field is unknown, not false.
Keywords
Keywords
trackers.languageKeywords.keywordsKeywords. Words and phrases in the specified language. It preserves the nested context needed to interpret the parent tracker.- Enables: Reconcile each returned keyword value in
trackers.languageKeywords.keywordswith the parent tracker’s provider profile; preserve distinct aliases, contact points, and organization attributes. - Interpretation: Gong API returns keywords as an array of keyword value entries on each language keyword; missing, empty, and permission-redacted arrays are not equivalent.
Language
Language
trackers.languageKeywords.languageLanguage. ISO 639-2/B language code. ‘mul’ means keywords apply to all languages. It supplies the language profile facet used to reconcile or attribute the language keyword.- Enables: Match repeated language keyword entries on language in
trackers.languageKeywords.language; collapse only entries that share this declared transform key. - Interpretation: Gong API reports language on each language keyword; missing and empty values can have different meanings. The connector explicitly marks this field as a transform deduplication key.
Part Of Question
Part Of Question
trackers.partOfQuestionPart Of Question. When true, only matches keywords that are part of a question. It distinguishes the provider-defined part of question state or classification for the tracker.- Enables: Filter Trackers by whether when true, only matches keywords that are part of a question in
trackers.partOfQuestion; count true, false, and missing results separately. - Interpretation: Gong API reports when true, only matches keywords that are part of a question as a boolean on each tracker; a missing field is unknown, not false.
Said At
Said At
trackers.saidAtSaid At. Where in the call to track keywords. Options: Anytime, First, Last. It distinguishes the provider-defined said at state or classification for the tracker.- Enables: Filter Trackers by the exact Gong API-defined said at in
trackers.saidAtand preserve unknown values as distinct categories. - Interpretation: Gong API supplies said at from its own taxonomy on each tracker; preserve unknown and newly introduced labels.
Said At Interval
Said At Interval
trackers.saidAtIntervalSaid At Interval. Period of time to check (units depend on saidAtUnit). Nullable. It supplies the said at interval boundary, band, or unit needed to interpret the companion measure.- Enables: Interpret
trackers.saidAtIntervalwith its companion minimum, maximum, interval, or unit before comparing the said at interval across like-for-like records. - Interpretation: Gong API reports said at interval as a boundary, band, interval, or unit on each tracker; it is meaningful only with its companion measure and provider scale.
Said At Unit
Said At Unit
trackers.saidAtUnitSaid At Unit. Units for saidAtInterval (minutes or percent of call duration). Nullable. It supplies the said at unit boundary, band, or unit needed to interpret the companion measure.- Enables: Interpret
trackers.saidAtUnitwith its companion minimum, maximum, interval, or unit before comparing the said at unit across like-for-like records. - Interpretation: Gong API reports said at unit as a boundary, band, interval, or unit on each tracker; it is meaningful only with its companion measure and provider scale.
Said In Topics
Said In Topics
trackers.saidInTopicsSaid In Topics. Topics in the call where tracker terms should be picked up. It preserves the nested context needed to interpret the parent tracker.- Enables: Review each provider-generated said in topic value in
trackers.saidInTopicswithin its parent tracker; retain element order and attribution without treating it as a Parable judgment. - Interpretation: Gong API returns said in topics as ordered content or provider-generated content metadata on each tracker; truncation, omission, and inaccessible source media can limit completeness. Gong API generated or classified this result; it may be incomplete and is not a Parable-authored judgment.
Tracker ID
Tracker ID
trackers.trackerIdTracker ID. Unique identifier. It provides the reference needed to connect the tracker to the corresponding provider object.- Enables: Match repeated tracker entries on tracker ID in
trackers.trackerId; collapse only entries that share this declared transform key. - Interpretation: Gong API reports tracker ID as an identifier in its tracker namespace; it is not a universal identity outside Gong API. The connector explicitly marks this field as a transform deduplication key. Gong API generated or classified this result; it may be incomplete and is not a Parable-authored judgment.
Tracker Name
Tracker Name
trackers.trackerNameTracker Name. Display name. It gives the tracker a human-readable provider label while its identifier remains the stable reference.- Enables: Label each tracker with tracker name from
trackers.trackerName; distinguish records that share that display name but have different Gong API identifiers. - Interpretation: Gong API reports tracker name as display text for each tracker; names are mutable and are not stable identities. Gong API generated or classified this result; it may be incomplete and is not a Parable-authored judgment.
Updated
Updated
trackers.updatedUpdated. Date/time the tracker settings were last updated (ISO-8601). It anchors the tracker on the provider’s reported timeline.- Enables: Order Trackers by updated in
trackers.updatedand isolate records inside an exact provider reporting window. - Interpretation: Gong API reports updated as a timestamp on each tracker; timezone and precision follow this API field, and absence is not an inferred event time. A connector directive uses this field to order records for latest-state or incremental processing. Gong API generated or classified this result; it may be incomplete and is not a Parable-authored judgment.
Updater User ID
Updater User ID
trackers.updaterUserIdUpdater User ID. ID of the team member who last updated the tracker. Null when built-in. It provides the reference needed to connect the tracker to the corresponding provider object.- Enables: Connect each tracker in Trackers to the referenced updater user through
trackers.updaterUserId; flag updater user ID values that do not resolve in that provider namespace. - Interpretation: Gong API reports updater user ID as an identifier in its updater user namespace; it is not a universal identity outside Gong API. Gong API generated or classified this result; it may be incomplete and is not a Parable-authored judgment.
Workspace ID
Workspace ID
trackers.workspaceIdWorkspace ID. ID of the workspace the tracker is in. Nullable. It provides the reference needed to connect the tracker to the corresponding provider object.- Enables: Connect each tracker in Trackers to the referenced workspace through
trackers.workspaceId; flag workspace ID values that do not resolve in that provider namespace. - Interpretation: Gong API reports workspace ID as an identifier in its workspace namespace; it is not a universal identity outside Gong API. Gong API generated or classified this result; it may be incomplete and is not a Parable-authored judgment.
User Settings History
User Settings History
user_settings_historyUser Settings History. Retrieve the settings change history for each Gong user. Returns historical records of user settings changes over time, useful for tracking configuration changes and compliance auditing. This is a child endpoint of users — it iterates over all users and fetches settings history for each one via GET /v2/users/ID/settings-history.- Enables: Trace each user’s provider setting changes over time and attribute each historical state to the parent Gong user.
- Scope: Reads the records selected by Gong API’s
/{apiVersion}/users/{id}/settings-historyoperation as an event stream using full synchronization. Visibility follows the Gong API credential, workspace access, and the endpoint’s content-selection settings. The stream does not include records the credential, parent traversal, configured filters, or provider API omits. This stream supplies no reliable deletion signal.
Setting
Setting
user_settings_history.settingSetting. The user capability that was changed (e.g., webConferencesRecorded, emailsImported, preventEmailImport, active, nonRecordedMeetingsImported, gongConnectEnabled, callsImported, interviewsRecorded, preventInterviewRecording). It must be interpreted with the enclosing provider field name, type, or custom schema for the user settings history.- Enables: Interpret
user_settings_history.settingwith the enclosing custom field name, declared type, and provider schema; compare only records that share that contract. - Interpretation: Gong API reports setting under the enclosing custom or typed field contract on each user settings history; compare it only with values from the same provider key and type.
Time
Time
user_settings_history.timeTime. ISO-8601 timestamp of when the change was applied. It anchors the user settings history on the provider’s reported timeline.- Enables: Match repeated user settings history entries on time in
user_settings_history.time; collapse only entries that share this declared transform key. - Interpretation: Gong API reports time as a timestamp on each user settings history; timezone and precision follow this API field, and absence is not an inferred event time. The connector explicitly marks this field as a transform deduplication key. A connector directive uses this field to order records for latest-state or incremental processing. The schema designates this field as the event timestamp.
Value
Value
user_settings_history.valueValue. The new value that was set for the capability. It distinguishes the provider-defined value state or classification for the user settings history.- Enables: Filter User Settings History by whether the new value that was set for the capability in
user_settings_history.value; count true, false, and missing results separately. - Interpretation: Gong API reports the new value that was set for the capability as a boolean on each user settings history; a missing field is unknown, not false.
Users
Users
usersUsers. List all Gong users in the organization. Returns user profiles including name, email, role, and activity status.- Enables: Reconcile Gong user identities, email addresses, manager relationships, roles, licenses, and account status.
- Scope: Reads the records selected by Gong API’s
/{apiVersion}/usersoperation as a snapshot stream using full synchronization. Visibility follows the Gong API credential, workspace access, and the endpoint’s content-selection settings. The stream does not include records the credential, parent traversal, configured filters, or provider API omits. This stream supplies no reliable deletion signal.
Active
Active
users.activeActive. Whether the user is active. It distinguishes the provider-defined active state or classification for the user.- Enables: Filter Users by whether the user is active in
users.active; count true, false, and missing results separately. - Interpretation: Gong API reports the user is active as a boolean on each user; a missing field is unknown, not false.
Conferencing Providers
Conferencing Providers
users.conferencingProvidersConferencing Providers. Web-conferencing providers connected for the user. It preserves the nested context needed to interpret the parent user.- Enables: Compare the exact Gong API-configured conferencing providers set in
users.conferencingProvidersfor each user; preserve provider labels and unknown entries. - Interpretation: Gong API returns conferencing providers as an array of conferencing provider entries on each user; missing, empty, and permission-redacted arrays are not equivalent.
Is Default
Is Default
users.conferencingProviders.isDefaultIs Default. Whether this is the user’s default provider. It distinguishes the provider-defined is default state or classification for the conferencing provider.- Enables: Filter Users by whether this is the user’s default provider in
users.conferencingProviders.isDefault; count true, false, and missing results separately. - Interpretation: Gong API reports this is the user’s default provider as a boolean on each conferencing provider; a missing field is unknown, not false.
Provider
Provider
users.conferencingProviders.providerProvider. Provider name (e.g., Zoom). It distinguishes the provider-defined provider state or classification for the conferencing provider.- Enables: Match repeated conferencing provider entries on provider in
users.conferencingProviders.provider; collapse only entries that share this declared transform key. - Interpretation: Gong API reports provider on each conferencing provider; missing and empty values can have different meanings. The connector explicitly marks this field as a transform deduplication key.
Created
Created
users.createdCreated. ISO-8601 timestamp of user creation. It anchors the user on the provider’s reported timeline.- Enables: Order Users by created in
users.createdand isolate records inside an exact provider reporting window. - Interpretation: Gong API reports created as a timestamp on each user; timezone and precision follow this API field, and absence is not an inferred event time. A connector directive uses this field to order records for latest-state or incremental processing.
Email Address
Email Address
users.emailAddressEmail Address. Email address of the user. It supplies the provider-reported address or location facet for the user, not a residency determination.- Enables: Attribute each user to a person or account by the exact email address in
users.emailAddress; identify addresses that do not match the Gong API directory. - Interpretation: Gong API reports email address as an address on each user; aliases, casing, and unverified addresses can prevent a one-to-one person match. A connector directive maps this field to a person’s email identity.
Email Aliases
Email Aliases
users.emailAliasesEmail Aliases. Additional email addresses associated with the user. It preserves the nested context needed to interpret the parent user.- Enables: Reconcile each returned email aliase in
users.emailAliaseswith the parent user’s provider profile; preserve distinct aliases, contact points, and organization attributes. - Interpretation: Gong API returns email aliases as an array of email aliase entries on each user; missing, empty, and permission-redacted arrays are not equivalent.
Extension
Extension
users.extensionExtension. Phone extension. It supplies the extension profile facet used to reconcile or attribute the user.- Enables: Reconcile the user’s extension in
users.extensionwith its provider profile or directory identity; confirm ambiguous matches with the stable provider ID. - Interpretation: Gong API reports extension as a mutable profile or directory attribute on each user; it may be absent, shared, or non-unique.
First Name
First Name
users.firstNameFirst Name. First name of the user. It gives the user a human-readable provider label while its identifier remains the stable reference.- Enables: Label each user with first name from
users.firstName; distinguish records that share that display name but have different Gong API identifiers. - Interpretation: Gong API reports first name as display text for each user; names are mutable and are not stable identities.
ID
ID
users.idID. Unique identifier for the user. It provides the reference needed to connect the user to the corresponding provider object.- Enables: Match repeated user entries on ID in
users.id; collapse only entries that share this declared transform key. - Interpretation: Gong API reports ID as an identifier in its user namespace; it is not a universal identity outside Gong API. The connector explicitly marks this field as a transform deduplication key. A connector directive maps this field to account identity.
Last Name
Last Name
users.lastNameLast Name. Last name of the user. It gives the user a human-readable provider label while its identifier remains the stable reference.- Enables: Label each user with last name from
users.lastName; distinguish records that share that display name but have different Gong API identifiers. - Interpretation: Gong API reports last name as display text for each user; names are mutable and are not stable identities.
Manager ID
Manager ID
users.managerIdManager ID. ID of the user’s manager. It provides the reference needed to connect the user to the corresponding provider object.- Enables: Connect each user in Users to the referenced manager through
users.managerId; flag manager ID values that do not resolve in that provider namespace. - Interpretation: Gong API reports manager ID as an identifier in its manager namespace; it is not a universal identity outside Gong API.
Meeting Consent Page URL
Meeting Consent Page URL
users.meetingConsentPageUrlMeeting Consent Page URL. URL of the user’s recording-consent page. It locates the provider resource or path associated with the user.- Enables: Associate each user with the resource identified by meeting consent page URL in
users.meetingConsentPageUrl; verify the link resolves to the expected Gong API object. - Interpretation: Gong API reports meeting consent page URL as a resource locator for each user; access still depends on viewer permissions and the URL may expire or change.
Personal Meeting URLs
Personal Meeting URLs
users.personalMeetingUrlsPersonal Meeting URLs. Personal meeting URLs. It preserves the nested context needed to interpret the parent user.- Enables: Associate every returned personal meeting URL value in
users.personalMeetingUrlswith the parent user; use the provider locator for reference without inferring that linked content was collected. - Interpretation: Gong API returns personal meeting URLs as an array of personal meeting URL value entries on each user; missing, empty, and permission-redacted arrays are not equivalent.
Phone Number
Phone Number
users.phoneNumberPhone Number. Phone number of the user. It supplies the phone number profile facet used to reconcile or attribute the user.- Enables: Reconcile the user’s phone number in
users.phoneNumberwith its provider profile or directory identity; confirm ambiguous matches with the stable provider ID. - Interpretation: Gong API reports phone number as a mutable profile or directory attribute on each user; it may be absent, shared, or non-unique.
Settings
Settings
users.settingsSettings. User-level Gong settings flags. Flag set varies by tenant/plan; additionalProperties allows capture of settings not enumerated here. It preserves the nested context needed to interpret the parent user.- Enables: Attribute settings in
users.settingsto the parent user; identify parent records where that nested settings object is absent. - Interpretation: Gong API reports settings as a nested object on each user; optional children may be absent from a valid response.
Emails Imported
Emails Imported
users.settings.emailsImportedEmails Imported. The provider-reported emails imported for each setting in Users. It distinguishes the provider-defined emails imported state or classification for the setting.- Enables: Filter Users by whether emails imported in
users.settings.emailsImported; count true, false, and missing results separately. - Interpretation: Gong API reports emails imported as a boolean on each setting; a missing field is unknown, not false.
Gong Connect Enabled
Gong Connect Enabled
users.settings.gongConnectEnabledGong Connect Enabled. The provider-reported Gong connect enabled for each setting in Users. It distinguishes the provider-defined Gong connect enabled state or classification for the setting.- Enables: Filter Users by whether Gong connect enabled in
users.settings.gongConnectEnabled; count true, false, and missing results separately. - Interpretation: Gong API reports Gong connect enabled as a boolean on each setting; a missing field is unknown, not false.
Non Recorded Meetings Imported
Non Recorded Meetings Imported
users.settings.nonRecordedMeetingsImportedNon Recorded Meetings Imported. The provider-reported non recorded meetings imported for each setting in Users. It distinguishes the provider-defined non recorded meetings imported state or classification for the setting.- Enables: Filter Users by whether non recorded meetings imported in
users.settings.nonRecordedMeetingsImported; count true, false, and missing results separately. - Interpretation: Gong API reports non recorded meetings imported as a boolean on each setting; a missing field is unknown, not false.
Prevent Email Import
Prevent Email Import
users.settings.preventEmailImportPrevent Email Import. The provider-reported prevent email import for each setting in Users. It distinguishes the provider-defined prevent email import state or classification for the setting.- Enables: Filter Users by whether prevent email import in
users.settings.preventEmailImport; count true, false, and missing results separately. - Interpretation: Gong API reports prevent email import as a boolean on each setting; a missing field is unknown, not false.
Prevent Web Conference Recording
Prevent Web Conference Recording
users.settings.preventWebConferenceRecordingPrevent Web Conference Recording. The provider-reported prevent web conference recording for each setting in Users. It distinguishes the provider-defined prevent web conference recording state or classification for the setting.- Enables: Filter Users by whether prevent web conference recording in
users.settings.preventWebConferenceRecording; count true, false, and missing results separately. - Interpretation: Gong API reports prevent web conference recording as a boolean on each setting; a missing field is unknown, not false.
Telephony Calls Imported
Telephony Calls Imported
users.settings.telephonyCallsImportedTelephony Calls Imported. The provider-reported telephony calls imported for each setting in Users. It distinguishes the provider-defined telephony calls imported state or classification for the setting.- Enables: Filter Users by whether telephony calls imported in
users.settings.telephonyCallsImported; count true, false, and missing results separately. - Interpretation: Gong API reports telephony calls imported as a boolean on each setting; a missing field is unknown, not false.
Web Conferences Recorded
Web Conferences Recorded
users.settings.webConferencesRecordedWeb Conferences Recorded. The provider-reported web conferences recorded for each setting in Users. It distinguishes the provider-defined web conferences recorded state or classification for the setting.- Enables: Filter Users by whether web conferences recorded in
users.settings.webConferencesRecorded; count true, false, and missing results separately. - Interpretation: Gong API reports web conferences recorded as a boolean on each setting; a missing field is unknown, not false.
Spoken Languages
Spoken Languages
users.spokenLanguagesSpoken Languages. Languages the user speaks. It preserves the nested context needed to interpret the parent user.- Enables: Reconcile each returned spoken language in
users.spokenLanguageswith the parent user’s provider profile; preserve distinct aliases, contact points, and organization attributes. - Interpretation: Gong API returns spoken languages as an array of spoken language entries on each user; missing, empty, and permission-redacted arrays are not equivalent.
Language
Language
users.spokenLanguages.languageLanguage. BCP-47 language tag. It supplies the language profile facet used to reconcile or attribute the spoken language.- Enables: Match repeated spoken language entries on language in
users.spokenLanguages.language; collapse only entries that share this declared transform key. - Interpretation: Gong API reports language on each spoken language; missing and empty values can have different meanings. The connector explicitly marks this field as a transform deduplication key.
Primary
Primary
users.spokenLanguages.primaryPrimary. Whether this is the primary language. It distinguishes the provider-defined primary state or classification for the spoken language.- Enables: Filter Users by whether this is the primary language in
users.spokenLanguages.primary; count true, false, and missing results separately. - Interpretation: Gong API reports this is the primary language as a boolean on each spoken language; a missing field is unknown, not false.
Title
Title
users.titleTitle. Job title of the user. It gives the user a human-readable provider label while its identifier remains the stable reference.- Enables: Label each user with title from
users.title; distinguish records that share that display name but have different Gong API identifiers. - Interpretation: Gong API reports title as display text for each user; names are mutable and are not stable identities.
Trusted Email Address
Trusted Email Address
users.trustedEmailAddressTrusted Email Address. Email address considered trusted for the user. Nullable. It supplies the provider-reported address or location facet for the user, not a residency determination.- Enables: Attribute each user to a person or account by the exact trusted email address in
users.trustedEmailAddress; identify addresses that do not match the Gong API directory. - Interpretation: Gong API reports trusted email address as an address on each user; aliases, casing, and unverified addresses can prevent a one-to-one person match.
Workspaces
Workspaces
workspacesWorkspaces. List all company workspaces in Gong. Returns workspace definitions with names and configuration.- Enables: Inventory Gong workspaces and connect their identities and configuration to workspace-scoped permission profiles.
- Scope: Reads the records selected by Gong API’s
/{apiVersion}/workspacesoperation as a snapshot stream using full synchronization. This stream is opt-in. Visibility follows the Gong API credential, workspace access, and the endpoint’s content-selection settings. The stream does not include records the credential, parent traversal, configured filters, or provider API omits. A later complete read can treat a previously seen record that is absent as removed.
Description
Description
workspaces.descriptionDescription. Description of the workspace. It defines the content surface available for this workspace.- Enables: Locate workspace records by description in
workspaces.description; attribute each text match to its parent workspace and, when present, its reported author. - Interpretation: Gong supplies this call content; provider-generated excerpts or summaries may omit context and are not Parable-authored assessments.
ID
ID
workspaces.idID. Unique identifier. It provides the reference needed to connect the workspace to the corresponding provider object.- Enables: Match repeated workspace entries on ID in
workspaces.id; collapse only entries that share this declared transform key. - Interpretation: Gong API reports ID as an identifier in its workspace namespace; it is not a universal identity outside Gong API. The connector explicitly marks this field as a transform deduplication key.
Name
Name
workspaces.nameName. Name of the workspace. It gives the workspace a human-readable provider label while its identifier remains the stable reference.- Enables: Label each workspace with name from
workspaces.name; distinguish records that share that display name but have different Gong API identifiers. - Interpretation: Gong API reports name as display text for each workspace; names are mutable and are not stable identities.
Gong
| Error | Meaning | Solution |
|---|---|---|
401 Unauthorized | Bad Access Key or Secret | Re-generate the key from the API settings page |
401 after a working period | Key expired | Generate a fresh key; Gong rotates keys periodically |
403 Forbidden on a specific endpoint | Missing API scope | Ask the Gong admin to enable the scope for that data category |
429 Too Many Requests | Rate limit | Parable backs off using Retry-After |
| Connection shows a permissions error right after saving the key | Parable checks the key with GET /v2/users on the connection’s API Base URL; Gong answered 403 | Enable the api:users:read scope for the key, and if the Gong workspace restricts API access by IP, allow Parable’s addresses |
| Connection shows a configuration error right after saving the key | The same check got a response that is neither success nor 401/403, usually because API Base URL is not a Gong API host | Set API Base URL to the value in Gong’s API settings, for example https://us-12345.api.gong.io, not the app.gong.io web address |
Empty data on calls | No calls in range | Calls need fromDateTime in the last 90 days per request |
Common Issues
Cannot find the API page
The Ecosystem → API menu appears only for users with the Technical Administrator role.Permission Profiles returns 401 / 403
Requiresapi:permission-profile:read on the key. Some tiers need Gong support to enable the scope.Gong API docs — Endpoint reference (requires login)API access guide — Customer-facing setup guideGong (OAuth)
| Error | Meaning | Solution |
|---|---|---|
401 Unauthorized | Invalid client credentials | Verify Client ID and Client Secret on the OAuth authorization screen |
403 Forbidden | Missing OAuth scope | Enable the scope on the OAuth application |
| Authorization redirect fails | Redirect URI mismatch | Copy the redirect URI from Parable (must include your workspace subdomain, e.g. {tenant-name}.parable.work) and add it exactly to your Gong OAuth app |
| Authorized in Parable but sync fails | Wrong API Base URL or token issue | Confirm API Base URL under Connection Settings matches Gong (default or regional); click Re-authorize with OAuth and confirm validation succeeded |
429 Too Many Requests | Rate limit | Parable backs off using Retry-After |