asana_add_followers_for_project
Add users as followers to an Asana project to keep them informed about project updates and progress. Specify project ID and user GIDs to grant project access.
Instructions
Add followers to a project
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | The project ID to add followers to | |
| followers | Yes | Array of user GIDs to add as followers to the project | |
| opt_fields | No | Comma-separated list of optional fields to include in the response |
Input Schema (JSON Schema)
{
"properties": {
"followers": {
"description": "Array of user GIDs to add as followers to the project",
"items": {
"type": "string"
},
"type": "array"
},
"opt_fields": {
"description": "Comma-separated list of optional fields to include in the response",
"type": "string"
},
"project_id": {
"description": "The project ID to add followers to",
"type": "string"
}
},
"required": [
"project_id",
"followers"
],
"type": "object"
}