Stytch · Schema

api_session_v1_ImpersonatedFactor

AuthenticationIdentityPasswordlessSecurityB2BConnected AppsMCPAI AgentsDeveloper Tools

Properties

Name Type Description
impersonator_id string For impersonated sessions initiated via the Stytch Dashboard, the `impersonator_id` will be the impersonator's Stytch Dashboard `member_id`.
impersonator_email_address string The email address of the impersonator.
View JSON Schema on GitHub

JSON Schema

stytch-api-session-v1-impersonatedfactor-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/api_session_v1_ImpersonatedFactor",
  "title": "api_session_v1_ImpersonatedFactor",
  "type": "object",
  "properties": {
    "impersonator_id": {
      "type": "string",
      "description": "For impersonated sessions initiated via the Stytch Dashboard, the `impersonator_id` will be the impersonator's Stytch Dashboard `member_id`."
    },
    "impersonator_email_address": {
      "type": "string",
      "description": "The email address of the impersonator."
    }
  },
  "required": [
    "impersonator_id",
    "impersonator_email_address"
  ]
}