Skip to main content

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.

Related Blog Posts
No blog post yet for this feature — coming soon.
In the meantime, browse the PDF4me blog for tutorials and workflows across every platform.
Visit the blog

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

This turns the setting off
It is the counterpart to Enable Tracking Changes, not an accept-all-revisions button. Check one file in Word if you expect existing markup to be resolved.
Async is on by default
The toggle ships enabled so larger documents process in the background rather than holding the request open.
Keep the .docx extension
The node works on Office Open XML Word files and returns the matching wordprocessingml MIME type.
PDF4me node in n8n set to Action Disable Tracking Changes In Word, Input Data Type Binary Data, Input Binary Field data, Output File Name tracking_disabled_output.docx, the Async toggle enabled, and Binary Data Output Name data

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.

ActionWhat it doesUse it when
Disable Tracking Changes In WordSwitches revision recording offA review is finished and further edits should not be logged
Enable Tracking Changes In WordSwitches revision recording onYou are sending a document out for review and want edits captured
Get Tracking Changes In WordReads the revision information outA 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.

ParameterRequiredWhat it doesExample
ActionRequiredSelects the PDF4me node action to run. Choose Disable Tracking Changes In Word.Disable Tracking Changes In Word
Input Data TypeRequiredFormat of the source Word input. Choose Binary Data (from a previous node), Base64 String, or URL.Binary Data
Input Binary FieldConditionalName 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 ContentConditionalBase64-encoded content of the source Word document. Required when Input Data Type is Base64 String.UEsDBBQABgAI...
File URLConditionalPublicly reachable HTTPS URL to the source Word document. Required when Input Data Type is URL.https://example.com/contract.docx
Output File NameRequiredFilename for the Word document returned by the node. Include the .docx extension.tracking_disabled_output.docx
AsyncOptionalToggle, enabled by default. Processes larger documents in the background instead of holding the request open, which reduces timeout risk.enabled
Binary Data Output NameOptionalName of the binary property the output item exposes. Defaults to data.data
Custom ProfilesOptionalAdvanced 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.

FieldTypeWhat it contains
Binary (data)BinaryThe returned Word document, under Binary Data Output Name (default data).
fileNameStringGenerated filename, matching Output File Name.
docNameStringName of the processed document, for reference and tracking.
mimeTypeStringMIME type of the output, the wordprocessingml.document type used by .docx files.
fileSizeNumberSize of the returned document in bytes.
trackingDisabledBooleanConfirms the track changes setting was switched off. A useful assertion before distributing the file.
successBooleanTrue when the operation completed, false on failure. Use it to branch error handling.
messageStringHuman-readable status message, carrying success confirmation or error detail.

How Do I Set Up Disable Tracking Changes In Word in n8n?

  1. Add PDF4me to your n8n workflow and choose the Disable Tracking Changes In Word action.
  2. In Credential to connect with, select your PDF4me credential or click Create New Credential and paste your API key.
  3. Set Input Data Type to Binary Data (default), Base64 String, or URL and supply the matching source Word field.
  4. Set Output File Name, ending in .docx.
  5. Leave Async enabled unless a downstream step requires the synchronous response.
  6. Leave Binary Data Output Name as data unless a later node expects a different property.
  7. 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.
Close out a review cycle
  1. A reviewer returns an edited contract by email.
  2. Get Tracking Changes captures what was changed for the audit record.
  3. Disable Tracking Changes switches recording off before the file moves on.
Normalise files from outside contributors
  1. Documents arrive from several agencies with inconsistent settings.
  2. Disable Tracking Changes applies the same setting to each one.
  3. The house template pipeline picks up from a predictable starting point.
Prepare a document for publishing
  1. A finished document is queued for distribution.
  2. Disable Tracking Changes stops further edits being logged as revisions.
  3. The file is converted to PDF and published.
Toggle tracking around a review
  1. Enable Tracking Changes runs before the document goes out for comment.
  2. Reviewers edit with every change captured.
  3. Disable Tracking Changes runs when the review window closes.

Practical Tips

Know which of the three actions you want
Disable turns recording off, Enable turns it on, and Get reads the revisions. Most mistakes on this task are picking the wrong one of the three.
Capture the revisions before you disable
Running Get Tracking Changes first preserves an audit record of what a reviewer altered, which is gone from view once the review closes.
Leave Async enabled for long documents
Background processing avoids holding the request open on large files, which is where timeouts show up.
Verify one file in Word before rolling out
Open a representative output and confirm it matches what you expect, especially if the documents still carry unresolved markup.
Branch on the success field
Test the returned success boolean so a failed run raises an alert instead of quietly forwarding an unmodified document.
Keep the extension consistent
Give Output File Name a .docx extension so downstream nodes and the recipient handle the file as a Word document.

Cheat Sheet

FieldValue
ActionDisable Tracking Changes In Word
Input Data TypeBinary Data
Input Binary Fielddata
Output File Nametracking_disabled_output.docx
Asyncenabled
Binary Data Output Namedata
CredentialsPDF4me API credential

Common Questions

Does this accept the existing tracked changes or just stop new ones being recorded?+
The action switches off the track changes setting on the document, which stops further edits being recorded as revisions. It is the counterpart to Enable Tracking Changes In Word rather than an accept-all-revisions operation. If your documents may still carry unresolved markup, run one representative file through and open the result in Word to confirm it looks the way you expect before rolling the workflow out.
What is the difference between this and the Get Tracking Changes action?+
Get Tracking Changes In Word reads the revision information out of a document so a workflow can inspect or report on it. Disable Tracking Changes In Word changes the document setting so revisions stop being recorded. A review workflow often uses Get first to capture what changed, then Disable once the review is closed.
Should I leave the Async toggle on?+
Yes in most cases. Async is enabled by default and lets larger documents process in the background instead of holding the request open, which reduces the chance of a timeout on big files. Turn it off only if a downstream step genuinely requires the synchronous response shape.
Why automate this instead of clicking Track Changes off in Word?+
Clicking the button is fine for one document you already have open. Automation matters when documents arrive continuously, for example every contract returned by a reviewer or every file dropped into a publishing folder. In an n8n workflow that becomes a single step nobody has to remember.
What file format does this node expect?+
It works on Word documents in the Office Open XML .docx format, and the returned file carries the matching wordprocessingml MIME type. Give Output File Name a .docx extension so downstream steps and the recipient install recognise the result correctly.

Same Task on Other Platforms

Get Help