undefined
The data you want to update. This function should only be called on a server. Never expose your `service_role` key in the browser.
response = supabase.auth.admin.update_user_by_id(
"11111111-1111-1111-1111-111111111111",
{
"email": "new@email.com",
}
)
response = supabase.auth.admin.update_user_by_id(
"6aa5d0d4-2a9f-4483-b6c8-0cf4c6c98ac4",
{
"password": "new_password",
}
)
response = supabase.auth.admin.update_user_by_id(
"6aa5d0d4-2a9f-4483-b6c8-0cf4c6c98ac4",
{
"user_metadata": {"hello": "world"},
}
)
response = supabase.auth.admin.update_user_by_id(
"6aa5d0d4-2a9f-4483-b6c8-0cf4c6c98ac4",
{
"app_metadata": {"plan": "trial"},
}
)
response = supabase.auth.admin.update_user_by_id(
"6aa5d0d4-2a9f-4483-b6c8-0cf4c6c98ac4",
{
"email_confirm": True,
}
)
response = supabase.auth.admin.update_user_by_id(
"6aa5d0d4-2a9f-4483-b6c8-0cf4c6c98ac4",
{
"phone_confirm": True,
}
)