Delete a user
Delete a user. Requires a service_role
key.
- The
deleteUser()
method requires the user's ID, which maps to theauth.users.id
column.
Parameters
- idREQUIREDstring
The user id you want to remove.
- shouldSoftDeleteOptionalboolean
If true, then the user will be soft-deleted from the auth schema. Defaults to false for backward compatibility. This function should only be called on a server. Never expose your `service_role` key in the browser.
const { data, error } = await supabase.auth.admin.deleteUser(
'715ed5db-f090-4b8c-a067-640ecee36aa0'
)