FullStory · Schema

BatchEventsImportRequest

Request body for batch importing events into FullStory

Session ReplayProduct AnalyticsDigital ExperienceBehavioral AnalyticsFrontend Monitoring

Properties

Name Type Description
requests array Array of event objects to import
View JSON Schema on GitHub

JSON Schema

fullstory-batcheventsimportrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BatchEventsImportRequest",
  "title": "BatchEventsImportRequest",
  "type": "object",
  "required": [
    "requests"
  ],
  "description": "Request body for batch importing events into FullStory",
  "properties": {
    "requests": {
      "type": "array",
      "description": "Array of event objects to import",
      "items": {
        "$ref": "#/components/schemas/CreateEventRequest"
      }
    }
  }
}