get_project_members
Retrieve a list of members from a specific project within the Taiga platform using session and project IDs. Enables AI systems to manage project team details effectively.
Instructions
Lists members of a specific project.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_id | Yes | ||
session_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"project_id": {
"title": "Project Id",
"type": "integer"
},
"session_id": {
"title": "Session Id",
"type": "string"
}
},
"required": [
"session_id",
"project_id"
],
"title": "get_project_membersArguments",
"type": "object"
}