list_wiki_pages
Retrieve wiki pages from a specific project on the Taiga platform using session and project IDs for efficient project documentation management.
Instructions
Lists wiki pages within 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": "list_wiki_pagesArguments",
"type": "object"
}