get_wiki_page
Retrieve Azure DevOps wiki page content by specifying the project, wiki identifier, and page path to access documentation and knowledge base articles.
Instructions
Gets a wiki page by its path.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | The path of the wiki page. | |
project | Yes | The name or ID of the project. | |
wiki_identifier | Yes | The name or ID of the wiki. |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "The path of the wiki page.",
"type": "string"
},
"project": {
"description": "The name or ID of the project.",
"type": "string"
},
"wiki_identifier": {
"description": "The name or ID of the wiki.",
"type": "string"
}
},
"required": [
"project",
"wiki_identifier",
"path"
],
"type": "object"
}