wiki_get_page
Retrieve specific wiki page content from Azure DevOps using organization, project, wiki ID, and page path or ID for efficient content access and management.
Instructions
Get content of a specific wiki page
Input Schema
Name | Required | Description | Default |
---|---|---|---|
organization | No | Azure DevOps organization name | |
path | Yes | Page path or page ID | |
project | No | Project name | |
wikiId | Yes | Wiki identifier |
Input Schema (JSON Schema)
{
"properties": {
"organization": {
"description": "Azure DevOps organization name",
"type": "string"
},
"path": {
"description": "Page path or page ID",
"type": "string"
},
"project": {
"description": "Project name",
"type": "string"
},
"wikiId": {
"description": "Wiki identifier",
"type": "string"
}
},
"required": [
"wikiId",
"path"
],
"type": "object"
}