Mixpanel · Schema

TrackResponse

AnalyticsData AnalysisEvent TrackingProduct AnalyticsUser Behavior

Properties

Name Type Description
status integer 1 for success, 0 for failure
error string Error message if status is 0
View JSON Schema on GitHub

JSON Schema

mixpanel-trackresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TrackResponse",
  "title": "TrackResponse",
  "type": "object",
  "properties": {
    "status": {
      "type": "integer",
      "enum": [
        0,
        1
      ],
      "description": "1 for success, 0 for failure"
    },
    "error": {
      "type": "string",
      "description": "Error message if status is 0"
    }
  }
}