Back to Nodes

PDFFill

Last updated Oct 1, 2025

n8n-Node zum Auslesen und Ausfüllen von PDF-Formularen über die PDF Fill API

18 Weekly Downloads
50 Monthly Downloads

Included Nodes

PDFFill

Description

PDF Fill n8n Node

Mit dieser n8n‑Node kannst du Formulardaten aus PDFs auslesen („Get Fields“) und PDFs mit Werten füllen („Fill“) – über die PDF Fill API.

Voraussetzungen

Installation

Installation
Diese Community Node kann direkt in n8n unter Settings → Community Nodes installiert werden. Suche nach dem Paketnamen n8n-nodes-pdf-fill.

Node Konfiguration

Parameter Typ Beschreibung Standard
Base URL String Basis-URL der PDF Fill API https://communitynodes.com
Operation Options fill oder getFields fill
Binary Property String Property-Name mit dem Binär‑PDF (bei binary Quelle) data
Password String Passwort für passwortgeschützte PDF-Dateien (optional)
Fields Collection (fixedCollection) Liste von Feldern mit name und value (nur bei fill) { field: [] }

Beispiel‑Workflows

Get Fields

Datei: examples/getFields_workflow.json

{
  "name": "PDF GetFields Example",
  "nodes": [
    {
      "parameters": {
        "baseUrl": "https://communitynodes.com",
        "operation": "getFields",
        "binaryProperty": "data",
        "password": "myPassword"
      },
      "name": "Get PDF Fields",
      "type": "pdfFill",
      "typeVersion": 1,
      "position": [
        250, 300
      ]
    }
  ],
  "connections": {}
}

Fill

Datei: examples/fill_workflow.json

{
  "name": "PDF Fill Example",
  "nodes": [
    {
      "parameters": {
        "baseUrl": "https://communitynodes.com",
        "operation": "fill",
        "binaryProperty": "data",
        "password": "myPassword",
        "fields": {
          "field": [
            {
              "name": "Name",
              "value": "Max Mustermann"
            },
            {
              "name": "Vorname",
              "value": "Max"
            },
            {
              "name": "Nachname",
              "value": "Mustermann"
            }
          ]
        }
      },
      "name": "Fill PDF Form",
      "type": "pdfFill",
      "typeVersion": 1,
      "position": [
        250,
        300
      ]
    }
  ],
  "connections": {}
}

Lizenz: MIT