Gong · Schema

AggregatedActivityRequest

SalesRevenue IntelligenceConversationAnalyticsArtificial IntelligenceConversation IntelligenceSales EngagementCRMForecastingTranscriptionAgents

Properties

Name Type Description
cursor string Cursor for pagination.
filter object Filter criteria for activity retrieval.
View JSON Schema on GitHub

JSON Schema

gong-aggregatedactivityrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AggregatedActivityRequest",
  "title": "AggregatedActivityRequest",
  "type": "object",
  "properties": {
    "cursor": {
      "type": "string",
      "description": "Cursor for pagination."
    },
    "filter": {
      "type": "object",
      "properties": {
        "fromDateTime": {
          "type": "string",
          "format": "date-time",
          "description": "Start of the date range."
        },
        "toDateTime": {
          "type": "string",
          "format": "date-time",
          "description": "End of the date range."
        },
        "userIds": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Filter by specific user IDs."
        }
      },
      "description": "Filter criteria for activity retrieval."
    }
  }
}