Stytch · Schema

api_magic_v1_Options

AuthenticationIdentityPasswordlessSecurityB2BConnected AppsMCPAI AgentsDeveloper Tools

Properties

Name Type Description
ip_match_required boolean Require that the IP address the Magic Link was requested from matches the IP address it's clicked from.
user_agent_match_required boolean Require that the user agent the Magic Link was requested from matches the user agent it's clicked from.
View JSON Schema on GitHub

JSON Schema

stytch-api-magic-v1-options-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/api_magic_v1_Options",
  "title": "api_magic_v1_Options",
  "type": "object",
  "properties": {
    "ip_match_required": {
      "type": "boolean",
      "description": "Require that the IP address the Magic Link was requested from matches the IP address it's clicked from."
    },
    "user_agent_match_required": {
      "type": "boolean",
      "description": "Require that the user agent the Magic Link was requested from matches the user agent it's clicked from."
    }
  },
  "required": [
    "ip_match_required",
    "user_agent_match_required"
  ]
}