list_wiki_pages
Retrieve all pages from a specified wiki in an Azure DevOps project to access documentation and content.
Instructions
Lists all pages in a wiki.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project | Yes | The name or ID of the project. | |
wiki_identifier | Yes | The name or ID of the wiki. |
Input Schema (JSON Schema)
{
"properties": {
"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"
}