Skip to Content
Clerk logo

Clerk Docs

Ctrl + K
Go to clerkstage.dev

Time-based one-time password (TOTP)

These are all methods on the [User][signup-ref] class that allow you to generate and verify TOTP secrets, disable TOTP, and manage backup codes for user authentication.

createTOTP()

Generates a TOTP secret for a user that can be used to register the application on the user's authenticator app of choice. Note that if this method is called again (while still unverified), it replaces the previously generated secret.

function createTOTP(): Promise<TOTPResource>;

createTOTP() returns

TypeDescription
Promise<TOTPResource>A Promise which resolves to the newly created TOTP object.

verifyTOTP()

Verifies a TOTP secret after a user has created it. The user must provide a code from their authenticator app, that has been generated using the previously created secret. This way, correct set up and ownership of the authenticator app can be validated.

function verifyTOTP(params: VerifyTOTPParams): Promise<TOTPResource>;

VerifyTOTPParams

NameTypeDescription
codestringA 6 digit TOTP generated from the user's authenticator app.

verifyTOTP() returns

TypeDescription
Promise<TOTPResource>A Promise which resolves to the newly verified TOTP object.

disableTOTP()

Disables TOTP by deleting the user's TOTP secret.

function disableTOTP(): Promise<DeletedObject>;

disableTOTP() returns

TypeDescription
Promise<DeletedObject>A Promise which resolves to a reference to the deleted TOTP object.

createBackupCode()

Generates a fresh new set of backup codes for the user. Note that if this method is called again, it replaces the previously generated codes.

function createBackupCode(): Promise<BackupCodeResource>;

createBackupCode() returns

TypeDescription
Promise<BackupCodeResource>A Promise which resolves to the newly created backup code.

TOTPResource

NameTypeDescription
idstringA unique identifier for this TOTP secret
secret?stringThe generated TOTP secret. Note: this is only returned to the client upon creation and cannot be retrieved afterwards.
uri?stringA complete TOTP configuration URI including the Issuer, Account, etc that can be pasted to an authenticator app or encoded to a QR code and scanned for convenience. Just like the secret, the URI is exposed to the client only upon creation and cannot be retrieved afterwards.
verifiedbooleanWhether this TOTP secret has been verified by the user by providing one code generated with it. TOTP is not enabled on the user unless they have a verified secret.
backupCodes?string[]A set of fresh generated Backup codes. Note that this will be populated if the feature is enabled in your instance and the user doesn't already have backup codes generated.
createdAtDateCreation date of the TOTP secret
updatedAtDateUpdate timestamp of the TOTP secret

BackupCodeResource

NameTypeDescription
idstringA unique identifier for this TOTP secret
codesstring[]The generated set of backup codes
createdAtDateCreation date of the TOTP secret
updatedAtDateUpdate timestamp of the TOTP secret

What did you think of this content?

Clerk © 2024