batch_update_documents
Update multiple Outline documents with different changes in one batch operation. Specify document IDs and optionally new titles, content, or append text.
Instructions
Updates multiple documents with different changes.
This tool processes each update sequentially, continuing even if individual operations fail. Rate limiting is handled automatically.
Each update dictionary should contain:
id (required): Document ID to update
title (optional): New title
text (optional): New content
append (optional): If True, appends text instead of replacing
Use this tool when you need to:
Update multiple documents with different changes
Batch edit document titles or content
Append content to multiple documents
Note: For Mermaid diagrams, use mermaidjs (not mermaid)
as the code fence language identifier for proper rendering.
Recommended batch size: 10-50 documents per operation
Args: updates: List of update specifications, each containing id and optional title, text, and append fields
Returns: Summary of batch operation with success/failure details
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| updates | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |