Gong · Schema

AuditLogsResponse

SalesRevenue IntelligenceConversationAnalyticsAI

Properties

Name Type Description
requestId string A unique identifier for the request.
records object
logs array List of audit log entries.
View JSON Schema on GitHub

JSON Schema

gong-auditlogsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AuditLogsResponse",
  "title": "AuditLogsResponse",
  "type": "object",
  "properties": {
    "requestId": {
      "type": "string",
      "description": "A unique identifier for the request."
    },
    "records": {
      "type": "object",
      "properties": {
        "totalRecords": {
          "type": "integer",
          "description": "Total number of log entries matching the filter."
        },
        "currentPageSize": {
          "type": "integer",
          "description": "Number of entries in the current page."
        },
        "cursor": {
          "type": "string",
          "description": "Cursor for retrieving the next page."
        }
      }
    },
    "logs": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/AuditLogEntry"
      },
      "description": "List of audit log entries."
    }
  }
}