Stytch · Schema

api_user_v1_PhoneNumber

AuthenticationIdentityPasswordlessSecurityB2BConnected AppsMCPAI AgentsDeveloper Tools

Properties

Name Type Description
phone_id string The unique ID for the phone number.
phone_number string The phone number.
verified boolean The verified boolean denotes whether or not this send method, e.g. phone number, email address, etc., has been successfully authenticated by the User.
View JSON Schema on GitHub

JSON Schema

stytch-api-user-v1-phonenumber-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/api_user_v1_PhoneNumber",
  "title": "api_user_v1_PhoneNumber",
  "type": "object",
  "properties": {
    "phone_id": {
      "type": "string",
      "description": "The unique ID for the phone number."
    },
    "phone_number": {
      "type": "string",
      "description": "The phone number."
    },
    "verified": {
      "type": "boolean",
      "description": "The verified boolean denotes whether or not this send method, e.g. phone number, email address, etc., has been successfully authenticated by the User."
    }
  },
  "required": [
    "phone_id",
    "phone_number",
    "verified"
  ]
}