FullStory · Schema

BatchUserImportRequest

Request body for batch importing users into FullStory

Session ReplayProduct AnalyticsDigital ExperienceBehavioral AnalyticsFrontend Monitoring

Properties

Name Type Description
requests array Array of user objects to import, up to 50,000 per request
View JSON Schema on GitHub

JSON Schema

fullstory-batchuserimportrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BatchUserImportRequest",
  "title": "BatchUserImportRequest",
  "type": "object",
  "required": [
    "requests"
  ],
  "description": "Request body for batch importing users into FullStory",
  "properties": {
    "requests": {
      "type": "array",
      "description": "Array of user objects to import, up to 50,000 per request",
      "maxItems": 50000,
      "items": {
        "$ref": "#/components/schemas/CreateUserRequest"
      }
    }
  }
}