Actions26
- Archiv Actions
- Dokument Actions
- Dokument herunterladen
- Dokument mit Klassifikation herunterladen
- Dokumentversion herunterladen
- Dokumentinformationen abrufen
- Dokument hochladen
- Dokument mit PDF hochladen
- Templates für Datei abrufen
- Duplizierungscheck durchführen
- Version mit PDF hinzufügen
- Version hinzufügen
- Klassifikation mit Template-Erkennung abrufen
- Dokumenttyp Actions
- Klassifikation Actions
- Suche Actions
- Ordner Actions
Overview
This node integrates with the ecoDMS document management system, enabling users to manage various resources such as archives, documents, classifications, folders, licenses, and searches within ecoDMS. Specifically, the operation "Dokument mit PDF hochladen" (Upload Document with PDF) allows uploading a PDF file as a new document into ecoDMS.
Typical use cases include automating document ingestion workflows where PDFs generated or received in other systems need to be stored and managed in ecoDMS. For example, automatically uploading invoices, contracts, or reports as PDFs into the document archive for further processing or compliance.
Properties
| Name | Meaning |
|---|---|
| PDF-Eigenschaft | The name of the binary property that contains the PDF file to upload. Typically this is the key under which the PDF binary data is provided in the input item. |
Output
The node outputs an array of JSON objects representing the result of the upload operation. Each output item corresponds to one processed input item/document.
- The
jsonfield contains metadata about the uploaded document, such as its ID, status, or any response data returned by ecoDMS. - If the node supports binary data output (not explicitly shown here), it would typically represent files or attachments related to the document, but in this case, the main focus is on uploading PDFs from binary input.
Dependencies
- Requires an API authentication token or API key credential configured in n8n to connect securely to the ecoDMS server.
- The ecoDMS server URL must be configured in the credentials; otherwise, the node will throw an error.
- No additional external dependencies are indicated beyond the ecoDMS API access.
Troubleshooting
Error: "Server-URL ist nicht konfiguriert."
This means the ecoDMS server URL is missing in the node's credentials configuration. To fix, provide the correct server URL in the API credentials settings.Unsupported Resource Error
If a resource other than those supported (Archive, Document, Classification, Search, Folder, License, DocumentType) is selected, the node throws an error indicating unsupported resource.General Processing Errors
Any unexpected errors during API calls or processing are wrapped and rethrown with a message "Fehler bei der Verarbeitung" (Error during processing). Check the underlying error details for troubleshooting.Binary Property Missing or Incorrect
If the specified binary property for the PDF does not exist or is empty in the input data, the upload will fail. Ensure the input items contain the PDF binary data under the exact property name configured.
Links and References
- ecoDMS Official Website – For documentation and API references.
- n8n Documentation on Creating Custom Nodes – For understanding node development concepts.
- General info on Document Management Systems for context on typical use cases.
If you need more detailed information about other operations or resources, feel free to ask!