ticktick_invite_collaborator
Invite users to collaborate on a TickTick project by providing the project ID, email, and optional role or personal message. Simplify team task management.
Instructions
Invite user to project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
Yes | Email address of user to invite | ||
personal_message | No | Personal invitation message | |
project_id | Yes | ID of the project | |
role | No | Role for the invited user | member |
Input Schema (JSON Schema)
{
"properties": {
"email": {
"description": "Email address of user to invite",
"type": "string"
},
"personal_message": {
"description": "Personal invitation message",
"type": "string"
},
"project_id": {
"description": "ID of the project",
"type": "string"
},
"role": {
"default": "member",
"description": "Role for the invited user",
"enum": [
"member",
"editor",
"admin"
],
"type": "string"
}
},
"required": [
"project_id",
"email"
],
"type": "object"
}