create_wiki_page
Create new wiki pages in Azure DevOps projects to document processes, share knowledge, and maintain team documentation with specified content and structure.
Instructions
Creates a new wiki page with specified content.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | The content of the wiki page. | |
path | Yes | The path of the wiki page. | |
project | Yes | The name or ID of the project. | |
wiki_identifier | Yes | The name or ID of the wiki. |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "The content of the wiki page.",
"type": "string"
},
"path": {
"description": "The path of the wiki page.",
"type": "string"
},
"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",
"path",
"content"
],
"type": "object"
}