Actions17
Tag → Delete by Label
AI-generatedOverview
This node interacts with the Wallabag service to delete tags by their labels. It supports deleting a single tag or multiple tags at once based on the provided comma-separated list of tag labels. This operation is useful for managing and cleaning up tags in Wallabag, especially when you want to remove tags by their names rather than by their IDs.
Use Case Examples
- Deleting a single tag by its label, e.g., 'tag1'.
- Deleting multiple tags at once by providing a comma-separated list of labels, e.g., 'tag1,tag2,tag3'.
Properties
| Name | Meaning |
|---|---|
| Labels | Comma-separated list of tag labels to delete. This is required to specify which tags should be deleted. |
| Delete Multiple | Boolean option to specify whether to delete multiple tags at once. If true, the node uses the /tags/label endpoint; otherwise, it uses /tag/label endpoint. |
Output
JSON
json- The JSON response from the Wallabag API after deleting the tag(s). This typically contains the result of the delete operation.
Dependencies
- Requires an API key credential for Wallabag API authentication.
Troubleshooting
- If the provided tag labels do not exist, the API may return an error or no tags will be deleted. Verify the labels are correct.
- If 'Delete Multiple' is set to true but the API endpoint or parameters are incorrect, the deletion may fail. Ensure the correct endpoint is used based on this option.
- Authentication errors may occur if the Wallabag API credentials are invalid or expired. Verify the API key credential is correctly configured.