create_wiki_pages_batch
Create multiple wiki pages simultaneously in Azure DevOps to streamline bulk documentation tasks and maintain project wikis efficiently.
Instructions
Create multiple wiki pages at once for bulk operations.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
pages_data | Yes | Array of page objects to create. | |
project | Yes | The name or ID of the project. | |
wiki_identifier | Yes | The name or ID of the wiki. |
Input Schema (JSON Schema)
{
"properties": {
"pages_data": {
"description": "Array of page objects to create.",
"items": {
"properties": {
"content": {
"description": "The content of the wiki page.",
"type": "string"
},
"path": {
"description": "The path of the wiki page to create.",
"type": "string"
}
},
"required": [
"path",
"content"
],
"type": "object"
},
"type": "array"
},
"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",
"pages_data"
],
"type": "object"
}