Skip to main content

Documentation Index

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

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

function signInWithEmail(options: SignInWithEmailOptions): Promise<SignInWithEmailResult>;
Initiates the sign in flow with an email.

Parameters

ParameterTypeDescription
optionsSignInWithEmailOptionsThe options for the sign in.

Returns

Promise<SignInWithEmailResult> The result of the sign in.

Example

const result = await signInWithEmail({
  email: "user@example.com"
});