Disable Tracking Changes In Word using n8n action
PDF4me Disable Tracking Changes In Word deactivates change tracking features in Microsoft Word documents through n8n automation workflows. Process Word files via n8n triggers, binary data, base64 strings, or public URLs to automatically disable track changes mode, remove revision tracking, clean up change history markup, and finalize documents for distribution with preserved formatting and finalized content. This solution is ideal for document finalization, revision cleanup, final version preparation, change history removal, document publishing, and collaborative editing completion that require automated tracking disabling with clean output and seamless integration.
Setup
Add the PDF4me "Disable Tracking Changes In Word" node to your n8n workflow and configure the required parameters. For initial setup instructions, see our n8n Integration Guide.
Prerequisites:
- PDF4me API credentials
- n8n workflow access
Configuration:
- Add PDF4me node to workflow
- Select "Disable Tracking Changes In Word" action
- Configure input parameters (see below)

Parameters
Complete list of parameters for the Disable Tracking changes In Word action. Configure these parameters to control tracking changes disabling.
Important: Parameters marked with an asterisk (***) are required and must be provided for the action to function correctly.
| Parameter | Type | Description | Example |
|---|---|---|---|
| Input Data Type*** | String | Word Input Format Selection • Choose the format of your Word document input • PDF4me supports multiple input types • Options: Binary Data, Base64 String, or URL | Binary Data |
| Input Binary Field | Binary | Binary Word File Input (Required if Binary Data) • Reference Word file from previous n8n node or file upload • PDF4me processes binary Word files with automatic format detection • Required when Input Data Type is "Binary Data" | {{ $binary.data }} |
| Base64 Document Content | String | Base64 Encoded Word Input (Required if Base64 String) • Provide Word data as base64 encoded string • PDF4me automatically decodes and processes the Word content • Required when Input Data Type is "Base64 String" | UEsDBBQABgAI... |
| File URL | String | Public Word URL Input (Required if URL) • Provide a public/open permission URL to the Word file • PDF4me downloads and processes the file from URL • Required when Input Data Type is "URL" | https://abc.com/demo.docx |
| Output File Name*** | String | Cleaned Word Output Filename • Specify the name for the generated Word file • Must include .docx extension • PDF4me ensures unique naming and format validation | tracking_disabled.docx |
| Binary Data Output Name*** | String | Binary Data Mapping • Define the variable name for accessing generated Word binary data • Used in subsequent workflow actions • Essential for workflow data flow | data |
| Async | Boolean | Asynchronous Processing • Enable asynchronous processing for large files • When enabled, operation runs in background and returns immediately • Recommended for large Word files | true |
Advanced Options
The following parameters are available in the Advanced Options section and are optional:
| Parameter | Type | Description | Example |
|---|---|---|---|
| Custom Profiles | String | Custom Configuration Profiles • Set additional options using custom profiles • JSON-like format containing predefined parameters • Supports outputDataFormat, preserveMetadata, etc. • Optional for specialized requirements | { "outputDataFormat": "json", "preserveMetadata": true, "optimizeForPrinting": false, "compressionLevel": "medium" } |
Output
Output Parameters
| Parameter | Type | Description | Example |
|---|---|---|---|
| success | Boolean | PDF4me tracking removal status indicator - Boolean flag indicating the success or failure of the tracking changes removal process. PDF4me returns true for successful operations and false for any errors, enabling robust error handling in automated workflows | true |
| message | String | PDF4me tracking removal status message - Human-readable status message providing details about the tracking removal process result. Includes success confirmation or error details for troubleshooting | Tracking changes disabled successfully |
| fileName | String | PDF4me generated Word filename - The complete filename of the successfully generated cleaned Word document with proper .docx extension. PDF4me ensures unique naming and validates file format compliance for seamless integration with downstream processes | tracking_disabled.docx |
| mimeType | String | PDF4me output MIME type - MIME type of the generated Word file, always "application/vnd.openxmlformats-officedocument.wordprocessingml.document" for Word documents. Useful for content type validation and proper file handling in web applications | application/vnd.openxmlformats-officedocument.wordprocessingml.document |
| fileSize | Number | PDF4me Word file size in bytes - The exact size of the generated cleaned Word file in bytes, provided by PDF4me for storage planning, bandwidth optimization, and file transfer monitoring. Essential for enterprise document management and workflow automation | 125430 |
| docName | String | PDF4me document name reference - The name of the processed document for reference and tracking purposes. This matches the fileName for consistency in document management workflows | tracking_disabled.docx |
| trackingDisabled | Boolean | PDF4me tracking removal confirmation - Boolean flag confirming that tracking changes have been successfully disabled and removed from the Word document. Useful for verifying that tracking removal was applied correctly | true |
| revisionsRemoved | Number | PDF4me revisions removed count - The number of tracked changes and revisions that were successfully removed from the Word document. Useful for tracking cleanup effectiveness and document finalization results | 15 |
N8N Action Response
The PDF4me Disable Tracking Changes In Word API returns a response that can be viewed in multiple formats. Choose the view that best fits your needs:
- JSON
- Table
- Schema
- Binary
JSON Response Format
The raw JSON response from the API:
[
{
"success": true,
"message": "Tracking changes disabled successfully",
"fileName": "tracking_disabled.docx",
"mimeType": "application/vnd.openxmlformats-officedocument.wordprocessingml.document",
"fileSize": 125430,
"docName": "tracking_disabled.docx",
"trackingDisabled": true,
}
]
Table View
Response data in a structured table format:
| Parameter | Value |
|---|---|
| success | true |
| message | Tracking changes disabled successfully |
| fileName | tracking_disabled.docx |
| mimeType | application/vnd.openxmlformats-officedocument.wordprocessingml.document |
| fileSize | 125430 |
| docName | tracking_disabled.docx |
| trackingDisabled | true |
Schema View
The data structure and types of the response:
1 item
success: ☑ true
message: AB Tracking changes disabled successfully
fileName: AB tracking_disabled.docx
mimeType: AB application/vnd.openxmlformats-officedocument.wordprocessingml.document
fileSize: # 125430
docName: AB tracking_disabled.docx
trackingDisabled: ☑ true
Type Indicators:
AB= String#= Number☑= Boolean
Binary Data View
The actual cleaned Word file data and metadata:
data
─────────────────────────────
File Name: tracking_disabled.docx
File Extension: docx
Mime Type: application/vnd.openxmlformats-officedocument.wordprocessingml.document
File Size: 122.5 KB
Use Cases
Document Finalization and Publishing
- Remove tracking changes from final documents before publication or distribution
- Clean up collaborative documents that have gone through multiple review cycles
- Prepare professional documents for client delivery and external sharing
Legal and Compliance Document Preparation
- Remove revision history from legal documents and contracts before finalization
- Clean up tracked changes in compliance reports and regulatory submissions
- Ensure sensitive revision information is not exposed in final document versions
Enterprise Document Management
- Automate tracking removal in document approval workflows and publishing processes
- Clean up documents before archiving in document management systems
- Streamline document finalization for different business units and departments