Auth0 · Schema

ChangePasswordTicketIdentity

The user's identity. If you set this value, you must also send the user_id parameter.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
user_id string user_id of the identity.
provider object
connection_id string connection_id of the identity.
View JSON Schema on GitHub

JSON Schema

auth0-changepasswordticketidentity-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ChangePasswordTicketIdentity",
  "title": "ChangePasswordTicketIdentity",
  "type": "object",
  "description": "The user's identity. If you set this value, you must also send the user_id parameter.",
  "additionalProperties": false,
  "required": [
    "user_id",
    "provider"
  ],
  "x-release-lifecycle": "EA",
  "properties": {
    "user_id": {
      "type": "string",
      "description": "user_id of the identity.",
      "default": "5457edea1b8f22891a000004"
    },
    "provider": {
      "$ref": "#/components/schemas/IdentityProviderOnlyAuth0Enum"
    },
    "connection_id": {
      "type": "string",
      "description": "connection_id of the identity.",
      "pattern": "^con_[A-Za-z0-9]{16}$"
    }
  }
}