delete_auth_user
Remove a user from auth.users by their UUID. Requires a service_role key and direct database connection, ensuring secure and controlled user deletion in self-hosted Supabase instances.
Instructions
Deletes a user from auth.users by their ID. Requires service_role key and direct DB connection.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
user_id | Yes | The UUID of the user to delete. |
Input Schema (JSON Schema)
{
"properties": {
"user_id": {
"description": "The UUID of the user to delete.",
"format": "uuid",
"type": "string"
}
},
"required": [
"user_id"
],
"type": "object"
}