get_wiki_page
Retrieve a specific wiki page by its ID to access detailed information, using session authentication for secure API integration with the Taiga project management platform.
Instructions
Gets a specific wiki page by its ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
session_id | Yes | ||
wiki_page_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"session_id": {
"title": "Session Id",
"type": "string"
},
"wiki_page_id": {
"title": "Wiki Page Id",
"type": "integer"
}
},
"required": [
"session_id",
"wiki_page_id"
],
"title": "get_wiki_pageArguments",
"type": "object"
}