ticktick_remove_collaborator
Remove a collaborator from a specified project by providing the project ID and user ID, ensuring access control in TickTick task management.
Instructions
Remove project access
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_id | Yes | ID of the project | |
user_id | Yes | ID of user to remove |
Input Schema (JSON Schema)
{
"properties": {
"project_id": {
"description": "ID of the project",
"type": "string"
},
"user_id": {
"description": "ID of user to remove",
"type": "string"
}
},
"required": [
"project_id",
"user_id"
],
"type": "object"
}