addPeopleToProject
Assign individuals or teams to a specific project by specifying project and user IDs. Streamlines user management within Teamwork projects for better collaboration.
Instructions
Add people to a specific project in Teamwork
Input Schema
Name | Required | Description | Default |
---|---|---|---|
checkTeamIds | No | Optional array of team IDs to check | |
projectId | Yes | The ID of the project to add people to | |
userIds | Yes | Array of user IDs to add to the project |
Input Schema (JSON Schema)
{
"properties": {
"checkTeamIds": {
"description": "Optional array of team IDs to check",
"items": {
"type": "integer"
},
"type": "array"
},
"projectId": {
"description": "The ID of the project to add people to",
"type": "integer"
},
"userIds": {
"description": "Array of user IDs to add to the project",
"items": {
"type": "integer"
},
"type": "array"
}
},
"required": [
"projectId",
"userIds"
],
"type": "object"
}