delete_user
Remove a user from TeamRetro by specifying their email address. This action ensures user data is permanently deleted from the system for retrospective management.
Instructions
Delete a user by email
Input Schema
Name | Required | Description | Default |
---|---|---|---|
Yes | string |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"email": {
"description": "string",
"format": "email",
"type": "string"
}
},
"required": [
"email"
],
"type": "object"
}