ticktick_share_project
Share a project with others by specifying project ID, recipient emails, and permission levels (view, edit, admin). Include an optional invitation message for collaboration.
Instructions
Share project with others
Input Schema
Name | Required | Description | Default |
---|---|---|---|
emails | Yes | Email addresses to share with | |
message | No | Optional invitation message | |
permission_level | No | Permission level for shared users | edit |
project_id | Yes | ID of the project to share |
Input Schema (JSON Schema)
{
"properties": {
"emails": {
"description": "Email addresses to share with",
"items": {
"type": "string"
},
"type": "array"
},
"message": {
"description": "Optional invitation message",
"type": "string"
},
"permission_level": {
"default": "edit",
"description": "Permission level for shared users",
"enum": [
"view",
"edit",
"admin"
],
"type": "string"
},
"project_id": {
"description": "ID of the project to share",
"type": "string"
}
},
"required": [
"project_id",
"emails"
],
"type": "object"
}