Actions80
- Add Attachment To PDF
- Add Barcode To PDF
- Add Form Fields To PDF
- Add HTML Header Footer
- Add Image Stamp To PDF
- Add Image Watermark To Image
- Add Margin To PDF
- Add Page Number To PDF
- Add Text Stamp To PDF
- Add Text Watermark To Image
- AI-Invoice Parser
- AI-Process Contract
- AI-Process HealthCard
- Classify Document
- Compress Image
- Compress PDF
- Convert HTML To PDF
- Convert Image Format
- Convert JSON To Excel
- Convert Markdown To PDF
- Convert PDF To Editable PDF Using OCR
- Convert PDF To Excel
- Convert PDF To PowerPoint
- Convert PDF To Word
- Convert To PDF
- Convert URL to PDF
- Convert VISIO
- Convert Word to PDF Form
- Create Images From PDF
- Create PDF/A
- Create Swiss QR Bill
- Crop Image
- Delete Blank Pages From PDF
- Delete Unwanted Pages From PDF
- Split PDF By Barcode
- Disable Tracking Changes In Word
- Enable Tracking Changes In Word
- Extract Attachment From PDF
- Extract Form Data From PDF
- Extract Pages From PDF
- Extract Resources
- Extract Table From PDF
- Extract Text By Expression
- Extract Text From Word
- Fill PDF Form
- Find And Replace Text
- Flip Image
- Flatten PDF
- Generate Barcode
- Generate Document Single
- Generate Documents Multiple
- Get Document From Pdf4me
- Get Image Metadata
- Get PDF Metadata
- Split PDF By Swiss QR
- Get Tracking Changes In Word
- Image Extract Text
- Linearize PDF
- Merge Multiple PDFs
- Overlay PDFs
- Parse Document
- Protect PDF
- Read Barcode From Image
- Read Barcode From PDF
- Read SwissQR Code
- Remove EXIF Tags From Image
- Repair PDF Document
- Replace Text With Image
- Replace Text With Image In Word
- Resize Image
- Rotate Document
- Rotate Image
- Rotate Image By EXIF Data
- Rotate PDF Page
- Sign PDF
- Split PDF By Text
- Split PDF Regular
- Unlock PDF
- Update Hyperlinks Annotation
- Upload File To PDF4me
Overview
This node operation converts a Word document into a fillable PDF form. It supports multiple input methods for the Word document, including binary data from a previous node, a base64-encoded string, or a URL pointing to the document. The output is a PDF file with form fields that can be filled electronically.
This operation is useful in scenarios where users need to automate the transformation of Word documents (such as contracts, applications, or surveys) into interactive PDF forms for easier distribution and data collection. For example, an HR department could convert employment agreement templates into fillable PDFs to streamline onboarding paperwork.
Properties
| Name | Meaning |
|---|---|
| Input Data Type | How the input Word document is provided. Options: • Binary Data — Use Word document from previous node • Base64 String — Provide Word document content as base64 encoded string • URL — Provide URL to Word document |
| Binary Property | Name of the binary property containing the Word document (used only if Input Data Type is Binary Data). |
| Input File Name | Name of the input Word file including extension. If not provided when using binary data, filename from binary data will be used. Required for base64 and URL input types. |
| Base64 Content | Base64 encoded content of the Word document (required if Input Data Type is Base64 String). |
| File URL | URL of the Word document to convert (required if Input Data Type is URL). |
| Output File Name | Desired name for the output PDF form file. Defaults to "word_to_pdf_form_output.pdf". |
| Advanced Options | Custom JSON profiles to adjust extra API call properties. Users can specify additional options by providing JSON according to external API documentation. |
| Binary Data Output Name | Custom name for the binary data field in the node's output. Defaults to "data". |
Output
The node outputs the converted PDF form as binary data under the specified binary data output name (default "data"). The JSON output contains metadata about the conversion result, while the binary data holds the actual PDF file content ready for further use or download.
If the user sets a custom binary data output name, the PDF binary will be accessible under that name in the output.
Dependencies
- Requires access to an external PDF conversion API service capable of converting Word documents to PDF forms.
- Needs an API key or authentication token configured in n8n credentials to authorize requests to the external service.
- Network access to fetch documents if using URL input type.
Troubleshooting
- Missing or invalid input file: Ensure the Word document is correctly provided either as binary data, valid base64 string, or accessible URL.
- Incorrect file name or extension: The input file name must include the correct extension (e.g.,
.docx) especially when using base64 or URL inputs. - API authentication errors: Verify that the API key or authentication token is properly set up in n8n credentials.
- Network issues fetching URL: If using URL input, ensure the URL is reachable and publicly accessible or accessible from the n8n environment.
- Invalid advanced options JSON: When using custom profiles, ensure the JSON syntax is correct and matches the external API specification.
Links and References
- PDF4me API Documentation — Reference for advanced profile options and API capabilities.