wiki_list_pages
Retrieve a list of wiki pages for a specific project and wiki in Azure DevOps. Supports pagination, customizable page limits, and optional page view statistics.
Instructions
Retrieve a list of wiki pages for a specific wiki and project.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
continuationToken | No | Token for pagination to retrieve the next set of pages. | |
pageViewsForDays | No | Number of days to retrieve page views for. If not specified, page views are not included. | |
project | Yes | The project name or ID where the wiki is located. | |
top | No | The maximum number of pages to return. Defaults to 20. | |
wikiIdentifier | Yes | The unique identifier of the wiki. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"continuationToken": {
"description": "Token for pagination to retrieve the next set of pages.",
"type": "string"
},
"pageViewsForDays": {
"description": "Number of days to retrieve page views for. If not specified, page views are not included.",
"type": "number"
},
"project": {
"description": "The project name or ID where the wiki is located.",
"type": "string"
},
"top": {
"default": 20,
"description": "The maximum number of pages to return. Defaults to 20.",
"type": "number"
},
"wikiIdentifier": {
"description": "The unique identifier of the wiki.",
"type": "string"
}
},
"required": [
"wikiIdentifier",
"project"
],
"type": "object"
}