Mixpanel · Schema

ServiceAccount

AnalyticsData AnalysisEvent TrackingProduct AnalyticsUser Behavior

Properties

Name Type Description
id integer Service account unique identifier
name string Service account display name
username string Service account username for basic auth
organizationId integer Parent organization ID
createdAt string When the service account was created
View JSON Schema on GitHub

JSON Schema

mixpanel-serviceaccount-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ServiceAccount",
  "title": "ServiceAccount",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "Service account unique identifier"
    },
    "name": {
      "type": "string",
      "description": "Service account display name"
    },
    "username": {
      "type": "string",
      "description": "Service account username for basic auth"
    },
    "organizationId": {
      "type": "integer",
      "description": "Parent organization ID"
    },
    "createdAt": {
      "type": "string",
      "format": "date-time",
      "description": "When the service account was created"
    }
  }
}