Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.modelence.com/llms.txt

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

API Reference / modelence / client / verifyEmail
verifyEmail(options): Promise<void>
Defined in: packages/modelence/src/auth/client/index.ts:119 Verify user’s email with a verification token.

Example

await verifyEmail({ token: 'verification-token' });

Parameters

ParameterTypeDescription
options{ token: string; }-
options.tokenstringThe email verification token.

Returns

Promise<void>