Actions31
- Tabelle Actions
- View Actions
- Spalte Actions
- Share Actions
- Import Actions
- Zeile Actions
Overview
This node integrates with Nextcloud Tables, allowing users to manage tables, views, columns, shares, imports, and rows within their Nextcloud environment. Specifically, for the "View" resource and the "Alle Views Abrufen" (Get All Views) operation, the node retrieves all views associated with a specified table.
Common scenarios include:
- Fetching all views of a particular table to display or process them further.
- Automating workflows that depend on dynamic retrieval of table views.
- Integrating Nextcloud Tables data into other systems by extracting view definitions.
Practical example:
- A user wants to list all views available for a specific table in Nextcloud to generate reports or synchronize data with another application.
Properties
| Name | Meaning |
|---|---|
| Tabelle | Select a table from the list or enter its ID manually. This determines which table's views are retrieved. |
The "Tabelle" property supports two modes:
- Liste: Choose from a searchable list of tables.
- ID: Enter the numeric ID of the table directly (must be a number).
Output
The node outputs an array of JSON objects, each representing a view related to the specified table. Each item in the output corresponds to one view's data as returned by the Nextcloud Tables API.
The exact structure of each view object depends on the API response but typically includes details such as view ID, name, filters, columns included, and other metadata defining the view.
No binary data output is produced by this operation.
Dependencies
- Requires an active connection to a Nextcloud instance with the Tables app enabled.
- Needs an API authentication token or API key credential configured in n8n to authorize requests.
- The node relies on internal handlers and helper methods to communicate with the Nextcloud Tables API.
Troubleshooting
- Invalid Table ID: If the table ID entered is not numeric or does not exist, the node will throw an error. Ensure the table ID is correct and accessible.
- Authentication Errors: Missing or invalid API credentials will prevent the node from retrieving views. Verify that the API key or token is correctly set up.
- Network Issues: Connectivity problems with the Nextcloud server can cause timeouts or failures.
- Unknown Resource or Operation: If the resource or operation parameters are incorrect, the node throws an error indicating an unknown resource or operation.
To resolve errors:
- Double-check the "Tabelle" input value.
- Confirm API credentials and permissions.
- Test connectivity to the Nextcloud server outside n8n if needed.