Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs-staging.auth0-mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Describes a configured identifier field (e.g. email, phone, or username) for use in a signup form or authentication flow.
Example
export interface Identifier {
  type: IdentifierType;
  required: boolean;
}

Properties

The type of identifier, such as 'email', 'phone', or 'username'.
required
boolean
required
Whether this identifier is required for signup.