wiki_list_wikis
Retrieve a list of wikis for Azure DevOps organizations or specific projects using PAT authentication. Simplify wiki management by filtering results by project name or ID.
Instructions
Retrieve a list of wikis for an organization or project.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project | No | The project name or ID to filter wikis. If not provided, all wikis in the organization will be returned. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"project": {
"description": "The project name or ID to filter wikis. If not provided, all wikis in the organization will be returned.",
"type": "string"
}
},
"type": "object"
}