asana_add_followers_to_task
Add specific users as followers to an Asana task to keep them informed about task progress and updates.
Instructions
Add followers to a task
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| task_id | Yes | The task ID to add followers to | |
| followers | Yes | Array of user IDs to add as followers to the task |
Input Schema (JSON Schema)
{
"properties": {
"followers": {
"description": "Array of user IDs to add as followers to the task",
"items": {
"type": "string"
},
"type": "array"
},
"task_id": {
"description": "The task ID to add followers to",
"type": "string"
}
},
"required": [
"task_id",
"followers"
],
"type": "object"
}