Actions38
- Correspondent Actions
- Custom Field Actions
- Document Actions
- Document Type Actions
- Group Actions
- Storage Path Actions
- Tag Actions
- User Actions
Overview
This node integrates with the Paperless NGX API to manage storage paths among other resources. Specifically, the "Delete" operation under the "Storage Path" resource allows users to delete a storage path by its unique ID. This is useful for cleaning up or removing obsolete storage locations in the Paperless NGX document management system.
Practical examples include:
- Automating the removal of storage paths that are no longer needed.
- Managing storage configurations dynamically based on workflow conditions.
- Maintaining an organized and updated storage structure within Paperless NGX.
Properties
| Name | Meaning |
|---|---|
| Note | Informational notice explaining that Owner and permissions fields accept numeric IDs, and how to retrieve available Users and Groups using the provided nodes. |
| Storage Path ID | The unique numeric identifier of the storage path to delete. This property is required for the delete operation. |
Output
The node outputs JSON data representing the result of the delete operation. Typically, this will confirm whether the deletion was successful or provide details if it failed. The exact structure depends on the Paperless NGX API response but generally includes status information.
No binary data output is involved in this operation.
Dependencies
- Requires an API key credential for authenticating with the Paperless NGX API.
- The node expects the base URL of the Paperless NGX instance to be configured in the credentials.
- Network access to the Paperless NGX API endpoint is necessary.
Troubleshooting
Common issues:
- Providing an invalid or non-existent Storage Path ID will cause the API to return an error.
- Authentication failures due to incorrect or missing API credentials.
- Network connectivity problems preventing access to the Paperless NGX API.
Error messages and resolutions:
- "404 Not Found" — The specified Storage Path ID does not exist. Verify the ID before attempting deletion.
- "401 Unauthorized" — Authentication failed. Check that the API key credential is correctly configured.
- Timeout or network errors — Ensure the Paperless NGX instance URL is reachable from n8n.
Links and References
- Paperless NGX API Documentation (for detailed API endpoints and responses)
- n8n documentation on creating custom nodes