Amplitude · Schema

IdentifyRequestBody

A/B TestingAnalyticsExperimentationFeature FlagsProduct AnalyticsUser Behavior

Properties

Name Type Description
api_key string The API key for the Amplitude project.
identification array An array of identification objects containing user_id or device_id and user_properties.
View JSON Schema on GitHub

JSON Schema

amplitude-identifyrequestbody-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IdentifyRequestBody",
  "title": "IdentifyRequestBody",
  "type": "object",
  "required": [
    "api_key",
    "identification"
  ],
  "properties": {
    "api_key": {
      "type": "string",
      "description": "The API key for the Amplitude project."
    },
    "identification": {
      "type": "array",
      "description": "An array of identification objects containing user_id or device_id and user_properties.",
      "items": {
        "$ref": "#/components/schemas/Identification"
      }
    }
  }
}