Auth0 · Schema

UpdateUserAuthenticationMethodRequestContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
name string A human-readable label to identify the authentication method.
preferred_authentication_method object Preferred phone authentication method
View JSON Schema on GitHub

JSON Schema

auth0-updateuserauthenticationmethodrequestcontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateUserAuthenticationMethodRequestContent",
  "title": "UpdateUserAuthenticationMethodRequestContent",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "name": {
      "type": "string",
      "description": "A human-readable label to identify the authentication method."
    },
    "preferred_authentication_method": {
      "$ref": "#/components/schemas/PreferredAuthenticationMethodEnum",
      "description": "Preferred phone authentication method"
    }
  }
}