Describes a configured identifier field (e.g. email, phone, or username) for use in a signup form or authentication flow.
const emailIdentifier: Identifier = { type: 'email', required: true}; Copy
const emailIdentifier: Identifier = { type: 'email', required: true};
The type of identifier, such as 'email', 'phone', or 'username'.
'email'
'phone'
'username'
IdentifierType
Whether this identifier is required for signup.
Describes a configured identifier field (e.g. email, phone, or username) for use in a signup form or authentication flow.
Example