deletePerson
Remove a person from Teamwork by specifying their ID. This tool simplifies user management by integrating with the Teamwork API to delete individuals from projects.
Instructions
Delete a person from Teamwork
Input Schema
Name | Required | Description | Default |
---|---|---|---|
personId | Yes | The ID of the person to delete |
Input Schema (JSON Schema)
{
"properties": {
"personId": {
"description": "The ID of the person to delete",
"type": "integer"
}
},
"required": [
"personId"
],
"type": "object"
}