Gong · Schema

ExtensiveCallsResponse

SalesRevenue IntelligenceConversationAnalyticsAI

Properties

Name Type Description
requestId string A unique identifier for the request.
records object
calls array List of detailed call objects.
View JSON Schema on GitHub

JSON Schema

gong-extensivecallsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ExtensiveCallsResponse",
  "title": "ExtensiveCallsResponse",
  "type": "object",
  "properties": {
    "requestId": {
      "type": "string",
      "description": "A unique identifier for the request."
    },
    "records": {
      "type": "object",
      "properties": {
        "totalRecords": {
          "type": "integer",
          "description": "Total number of matching records."
        },
        "currentPageSize": {
          "type": "integer",
          "description": "Number of records in the current page."
        },
        "cursor": {
          "type": "string",
          "description": "Cursor for retrieving the next page."
        }
      }
    },
    "calls": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/DetailedCall"
      },
      "description": "List of detailed call objects."
    }
  }
}