delete-user
Permanently remove a user from Clerk authentication service by user ID. This action cannot be reversed.
Instructions
Deleta permanentemente um usuário do Clerk pelo ID. Esta ação é irreversível!
Input Schema
Name | Required | Description | Default |
---|---|---|---|
userId | Yes |
Input Schema (JSON Schema)
{
"properties": {
"userId": {
"minLength": 1,
"type": "string"
}
},
"required": [
"userId"
],
"type": "object"
}