Gong · Schema

Gong Call

Represents a call record in the Gong platform, including metadata, participants, timing, and media information.

SalesRevenue IntelligenceConversationAnalyticsArtificial IntelligenceConversation IntelligenceSales EngagementCRMForecastingTranscriptionAgents

Properties

Name Type Description
id string Unique numeric identifier for the call (up to 20 digits).
title string The title or subject of the call.
url string URL to the call in the Gong web application.
scheduled string Scheduled start time of the call in ISO-8601 format.
started string Actual start time of the call in ISO-8601 format.
duration number Duration of the call in seconds.
direction string The direction of the call.
scope string Whether the call was internal or external.
media string The type of media recorded.
language string The detected language of the call.
workspaceId string The workspace identifier the call belongs to.
primaryUserId string The Gong user ID of the primary user on the call.
parties array The participants in the call.
View JSON Schema on GitHub

JSON Schema

gong-call-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://github.com/api-evangelist/gong/blob/main/json-schema/gong-call-schema.json",
  "title": "Gong Call",
  "description": "Represents a call record in the Gong platform, including metadata, participants, timing, and media information.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique numeric identifier for the call (up to 20 digits)."
    },
    "title": {
      "type": "string",
      "description": "The title or subject of the call."
    },
    "url": {
      "type": "string",
      "format": "uri",
      "description": "URL to the call in the Gong web application."
    },
    "scheduled": {
      "type": "string",
      "format": "date-time",
      "description": "Scheduled start time of the call in ISO-8601 format."
    },
    "started": {
      "type": "string",
      "format": "date-time",
      "description": "Actual start time of the call in ISO-8601 format."
    },
    "duration": {
      "type": "number",
      "description": "Duration of the call in seconds."
    },
    "direction": {
      "type": "string",
      "enum": ["Inbound", "Outbound", "Conference", "Unknown"],
      "description": "The direction of the call."
    },
    "scope": {
      "type": "string",
      "enum": ["Internal", "External", "Unknown"],
      "description": "Whether the call was internal or external."
    },
    "media": {
      "type": "string",
      "enum": ["Video", "Audio"],
      "description": "The type of media recorded."
    },
    "language": {
      "type": "string",
      "description": "The detected language of the call."
    },
    "workspaceId": {
      "type": "string",
      "description": "The workspace identifier the call belongs to."
    },
    "primaryUserId": {
      "type": "string",
      "description": "The Gong user ID of the primary user on the call."
    },
    "parties": {
      "type": "array",
      "items": {
        "$ref": "#/$defs/CallParty"
      },
      "description": "The participants in the call."
    }
  },
  "required": ["id"],
  "$defs": {
    "CallParty": {
      "type": "object",
      "description": "A participant in a Gong call.",
      "properties": {
        "id": {
          "type": "string",
          "description": "Unique identifier for the party."
        },
        "emailAddress": {
          "type": "string",
          "format": "email",
          "description": "Email address of the party."
        },
        "name": {
          "type": "string",
          "description": "Display name of the party."
        },
        "title": {
          "type": "string",
          "description": "Job title of the party."
        },
        "userId": {
          "type": "string",
          "description": "Gong user ID if the party is a Gong user."
        },
        "speakerId": {
          "type": "string",
          "description": "Speaker identifier within the call."
        },
        "affiliation": {
          "type": "string",
          "enum": ["Internal", "External", "Unknown"],
          "description": "Whether the party is internal or external."
        },
        "phoneNumber": {
          "type": "string",
          "description": "Phone number of the party."
        }
      }
    }
  }
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/gong-call"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.