Stytch · Schema

api_b2b_password_v1_b2b_passwords_discovery_email_ResetRequest

Request type

AuthenticationIdentityPasswordlessSecurityB2BConnected AppsMCPAI AgentsDeveloper Tools

Properties

Name Type Description
password_reset_token string The password reset token to authenticate.
password string The password to authenticate, reset, or set for the first time. Any UTF8 character is allowed, e.g. spaces, emojis, non-English characters, etc.
pkce_code_verifier string
View JSON Schema on GitHub

JSON Schema

stytch-api-b2b-password-v1-b2b-passwords-discovery-email-resetreque-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/api_b2b_password_v1_b2b_passwords_discovery_email_ResetRequest",
  "title": "api_b2b_password_v1_b2b_passwords_discovery_email_ResetRequest",
  "type": "object",
  "properties": {
    "password_reset_token": {
      "type": "string",
      "description": "The password reset token to authenticate."
    },
    "password": {
      "type": "string",
      "description": "The password to authenticate, reset, or set for the first time. Any UTF8 character is allowed, e.g. spaces, emojis, non-English characters, etc."
    },
    "pkce_code_verifier": {
      "type": "string"
    }
  },
  "description": "Request type",
  "required": [
    "password_reset_token",
    "password"
  ]
}