Skip to main content
import { useStytchB2BClient } from '@stytch/react/b2b';

export const Login = () => {
  const stytch = useStytchB2BClient();

  const sendEmailOTP = () => {
    stytch.otps.email.loginOrSignup({
      email_address: 'member@example.com',
      organization_id: 'organization-test-07971b06-ac8b-4cdb-9c15-63b17e653931',
    });
  };

  return <button onClick={sendEmailOTP}>Send email OTP</button>;
};
otps.email.loginOrSignup wraps the Send Login or Signup Email OTP endpoint. Use this method to send a one-time passcode (OTP) to a via email that can be used to log in or create a new Member in an .

Parameters

organization_id
string
required
The id of the Organization to login or signup to.You may also use the organization_slug or organization_external_id here as a convenience.
email_address
string
required
The email address to send the login or signup email to.
login_template_id
string
Use a custom template for login emails. By default, it will use your default email template. The template must be from Stytch’s built-in customizations or a custom HTML email for Magic Links - Login.
signup_template_id
string
Use a custom template for signup emails. By default, it will use your default email template. The template must be from Stytch’s built-in customizations or a custom HTML email for Magic Links - Signup.
locale
string
Used to determine which language to use when sending the user this delivery method. Parameter is an IETF BCP 47 language tag, e.g. “en”.Supported languages are English (“en”), Spanish (“es”), French (“fr”) and Brazilian Portuguese (“pt-br”); if no value is provided, the copy defaults to English.

Response

request_id
string
Globally unique UUID that is returned with every API call. This value is important to log for debugging purposes; we may ask for this value to help identify a specific API call when helping you debug an issue.
status_code
number
The HTTP status code of the response. Stytch follows standard HTTP response status code patterns, e.g. 2XX values equate to success, 3XX values are redirects, 4XX are client errors, and 5XX are server errors.