wiki_create_or_update_page
Create or update wiki pages in Azure DevOps with markdown content. Specify wiki identifier, path, and content for precise documentation management using PAT authentication.
Instructions
Create or update a wiki page with content.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | The content of the wiki page in markdown format. | |
etag | No | ETag for editing existing pages (optional, will be fetched if not provided). | |
path | Yes | The path of the wiki page (e.g., '/Home' or '/Documentation/Setup'). | |
project | No | The project name or ID where the wiki is located. If not provided, the default project will be used. | |
wikiIdentifier | Yes | The unique identifier or name of the wiki. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"content": {
"description": "The content of the wiki page in markdown format.",
"type": "string"
},
"etag": {
"description": "ETag for editing existing pages (optional, will be fetched if not provided).",
"type": "string"
},
"path": {
"description": "The path of the wiki page (e.g., '/Home' or '/Documentation/Setup').",
"type": "string"
},
"project": {
"description": "The project name or ID where the wiki is located. If not provided, the default project will be used.",
"type": "string"
},
"wikiIdentifier": {
"description": "The unique identifier or name of the wiki.",
"type": "string"
}
},
"required": [
"wikiIdentifier",
"path",
"content"
],
"type": "object"
}