PhoneNumber
The PhoneNumber
object describes a phone number. Phone numbers can be used as a proof of identification for users, or simply as a means of contacting users.
Phone numbers must be verified to ensure that they can be assigned to their rightful owners. The PhoneNumber
object holds all the necessary state around the verification process.
The verification process always starts with the PhoneNumber.prepareVerification()
method, which will send a one-time verification code via an SMS message. The second and final step involves an attempt to complete the verification by calling the PhoneNumber.attemptVerification()
method, passing the one-time code as a parameter.
Finally, phone numbers are used as part of multi-factor authentication. Users receive an SMS message with a one-time code that they need to provide as an extra verification step.
Properties
Name | Type | Description |
---|---|---|
id | string | A unique identifier for this phone number. |
phoneNumber | string | The value of this phone number, in E.164 format. |
reservedForSecondFactor | boolean | Set to true if this phone number is reserved for multi-factor authentication (2FA). Set to false otherwise. |
defaultSecondFactor | boolean | Set to true if this phone number is the default second factor. Set to false otherwise. A user must have exactly one default second factor, if multi-factor authentication (2FA) is enabled. |
verification | Verification | An object holding information on the verification of this phone number. |
linkedTo | Array<{id: string, type: string}> | An object containing information about any other identification that might be linked to this phone number. |
backupCodes | `string[] | undefined` |
Methods
create()
function create(): Promise<PhoneNumber>;
Creates a new phone number for the current user.
destroy()
function destroy(): Promise<void>;
Deletes this phone number.
toString()
function toString(): string;
Returns the phone number value in E.164 format. Can also be accessed via the PhoneNumber.phoneNumber
attribute.
Additional methods
In addition to the methods listed above, the PhoneNumber
class also has the following methods:
Validation
Second factor
Last updated on October 10, 2023