get_recent_wiki_pages
Retrieve recently modified wiki pages from Azure DevOps projects to track documentation changes and maintain current knowledge.
Instructions
Get recently modified wiki pages based on activity.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of pages to return (default: 10). | |
project | Yes | The name or ID of the project. | |
wiki_identifier | Yes | The name or ID of the wiki. |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"description": "Maximum number of pages to return (default: 10).",
"type": "integer"
},
"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"
],
"type": "object"
}