asana_add_members_for_project
Add team members to an Asana project by providing user IDs and project ID to manage project collaboration and access.
Instructions
Add members to a project
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | The project ID to add members to | |
| members | Yes | Array of user GIDs to add as members to the project | |
| opt_fields | No | Comma-separated list of optional fields to include in the response |
Input Schema (JSON Schema)
{
"properties": {
"members": {
"description": "Array of user GIDs to add as members 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 members to",
"type": "string"
}
},
"required": [
"project_id",
"members"
],
"type": "object"
}