Python: Resend an OTP

Parameters

Examples

Resend an email signup confirmation

response = supabase.auth.resend(\{
  "type": "signup",
  "email": "[email protected]",
  "options": \{
    "email_redirect_to": "https://example.com/welcome"
  \}
\})

Resend a phone signup confirmation

response = supabase.auth.resend(\{
  "type": "sms",
  "phone": "1234567890"
\})

Resend email change email

response = supabase.auth.resend(\{
  "type": "email_change",
  "email": "[email protected]"
\})

Resend phone change OTP

response = supabase.auth.resend(\{
  "type": "phone_change",
  "phone": "1234567890"
\})