Disable Tracking Changes In Word in n8n
Disable Tracking Changes In Word is a PDF4me node action in n8n that switches off revision recording on a Word document. Use it to close out a review cycle automatically, stop further edits being logged as tracked changes, or normalise the setting on every .docx that arrives from an outside contributor.
What this node does
PDF4me: Disable Tracking Changes In Word takes a .docx from Binary Data, a Base64 String, or a URL and returns it with the track changes setting switched off, so subsequent edits are no longer recorded as revisions. It is the direct counterpart to Enable Tracking Changes In Word. Because it runs as a workflow step, the setting is applied consistently to every document that passes through instead of depending on someone remembering the toolbar toggle.
Authenticating Your API Request
Every PDF4me node in n8n requires a valid Credential to connect with. Create or select one that holds your PDF4me API key so the workflow can authenticate document requests securely.
Important Facts You Should Not Miss

PDF4me Disable Tracking Changes In Word parameters panel in n8n
The Three Track Changes Actions Compared
PDF4me exposes track changes as a family of three actions. Picking the wrong one is the most common mistake on this task.
| Action | What it does | Use it when |
|---|---|---|
| Disable Tracking Changes In Word | Switches revision recording off | A review is finished and further edits should not be logged |
| Enable Tracking Changes In Word | Switches revision recording on | You are sending a document out for review and want edits captured |
| Get Tracking Changes In Word | Reads the revision information out | A workflow needs to inspect or report on what was changed |
What Parameters Does Disable Tracking Changes In Word Need?
Required: Action, Input Data Type, the field matching that input type, and Output File Name. Async, Binary Data Output Name, and Custom Profiles carry working defaults.
| Parameter | Required | What it does | Example |
|---|---|---|---|
| Action | Required | Selects the PDF4me node action to run. Choose Disable Tracking Changes In Word. | Disable Tracking Changes In Word |
| Input Data Type | Required | Format of the source Word input. Choose Binary Data (from a previous node), Base64 String, or URL. | Binary Data |
| Input Binary Field | Conditional | Name of the binary property on the incoming n8n item that holds the .docx. Required when Input Data Type is Binary Data. Defaults to data. | data |
| Base64 Document Content | Conditional | Base64-encoded content of the source Word document. Required when Input Data Type is Base64 String. | UEsDBBQABgAI... |
| File URL | Conditional | Publicly reachable HTTPS URL to the source Word document. Required when Input Data Type is URL. | https://example.com/contract.docx |
| Output File Name | Required | Filename for the Word document returned by the node. Include the .docx extension. | tracking_disabled_output.docx |
| Async | Optional | Toggle, enabled by default. Processes larger documents in the background instead of holding the request open, which reduces timeout risk. | enabled |
| Binary Data Output Name | Optional | Name of the binary property the output item exposes. Defaults to data. | data |
| Custom Profiles | Optional | Advanced Options field for extra processing settings, supplied in a JSON-like format. Leave blank unless you have a specific profile to apply. | { "preserveMetadata": true } |
Output Fields
A successful run returns one n8n item carrying the Word document with tracking switched off.
| Field | Type | What it contains |
|---|---|---|
Binary (data) | Binary | The returned Word document, under Binary Data Output Name (default data). |
fileName | String | Generated filename, matching Output File Name. |
docName | String | Name of the processed document, for reference and tracking. |
mimeType | String | MIME type of the output, the wordprocessingml.document type used by .docx files. |
fileSize | Number | Size of the returned document in bytes. |
trackingDisabled | Boolean | Confirms the track changes setting was switched off. A useful assertion before distributing the file. |
success | Boolean | True when the operation completed, false on failure. Use it to branch error handling. |
message | String | Human-readable status message, carrying success confirmation or error detail. |
How Do I Set Up Disable Tracking Changes In Word in n8n?
- Add PDF4me to your n8n workflow and choose the Disable Tracking Changes In Word action.
- In Credential to connect with, select your PDF4me credential or click Create New Credential and paste your API key.
- Set Input Data Type to Binary Data (default), Base64 String, or URL and supply the matching source Word field.
- Set Output File Name, ending in
.docx. - Leave Async enabled unless a downstream step requires the synchronous response.
- Leave Binary Data Output Name as
dataunless a later node expects a different property. - Execute the node and route the returned document into the next step, such as conversion, storage, or distribution.
Typical Setups
Workflow ExamplesCommon n8n workflow patterns using Disable Tracking Changes In Word.
- A reviewer returns an edited contract by email.
- Get Tracking Changes captures what was changed for the audit record.
- Disable Tracking Changes switches recording off before the file moves on.
- Documents arrive from several agencies with inconsistent settings.
- Disable Tracking Changes applies the same setting to each one.
- The house template pipeline picks up from a predictable starting point.
- A finished document is queued for distribution.
- Disable Tracking Changes stops further edits being logged as revisions.
- The file is converted to PDF and published.
- Enable Tracking Changes runs before the document goes out for comment.
- Reviewers edit with every change captured.
- Disable Tracking Changes runs when the review window closes.
Practical Tips
Cheat Sheet
| Field | Value |
|---|---|
| Action | Disable Tracking Changes In Word |
| Input Data Type | Binary Data |
| Input Binary Field | data |
| Output File Name | tracking_disabled_output.docx |
| Async | enabled |
| Binary Data Output Name | data |
| Credentials | PDF4me API credential |