delete-user
Remove a user from your n8n instance by specifying the client ID and user ID or email, ensuring effective user management and access control.
Instructions
Delete a user from your instance.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
clientId | Yes | ||
idOrEmail | Yes |
Input Schema (JSON Schema)
{
"properties": {
"clientId": {
"type": "string"
},
"idOrEmail": {
"type": "string"
}
},
"required": [
"clientId",
"idOrEmail"
],
"type": "object"
}