ticktick_get_team_activity
Retrieve and filter team activity feed from a specific project, including task updates, assignments, comments, and sharing, to monitor progress and collaboration efficiently.
Instructions
Project activity feed
Input Schema
Name | Required | Description | Default |
---|---|---|---|
activity_types | No | Filter by activity types | |
limit | No | Number of activities to retrieve | |
project_id | Yes | ID of the project |
Input Schema (JSON Schema)
{
"properties": {
"activity_types": {
"description": "Filter by activity types",
"items": {
"enum": [
"task_created",
"task_completed",
"task_assigned",
"comment_added",
"project_shared"
],
"type": "string"
},
"type": "array"
},
"limit": {
"default": 50,
"description": "Number of activities to retrieve",
"type": "number"
},
"project_id": {
"description": "ID of the project",
"type": "string"
}
},
"required": [
"project_id"
],
"type": "object"
}