Actions66
- Board Actions
- Bookmark Actions
- Blog Actions
- Comment Actions
- Discussion Actions
- Documentation Actions
- Label Actions
- Search Actions
Overview
This node interacts with the Discuss Kit API to manage content labels, specifically for bookmarks in this context. The "Remove Label" operation removes a specified label from a bookmark identified by its content ID. This is useful in scenarios where you want to dynamically update or clean up labels on bookmarks as part of an automation workflow, such as removing outdated tags or categorization labels.
For example, if you have a workflow that processes bookmarks and determines certain labels are no longer relevant, this node can remove those labels automatically without manual intervention.
Properties
| Name | Meaning |
|---|---|
| Content ID | The unique identifier of the bookmark content from which the label will be removed. |
| Label | The name of the label to remove from the bookmark. |
Output
The output JSON contains the response from the API after attempting to remove the label. Since the operation uses an HTTP DELETE request and does not explicitly return data, the output may be empty or contain confirmation of success depending on the API's response.
No binary data is produced by this operation.
Dependencies
- Requires access to the Discuss Kit API.
- Needs an API authentication token or API key credential configured in n8n to authorize requests.
- Uses the internal helper function to make HTTP requests to the Discuss Kit API endpoints.
Troubleshooting
Common issues:
- Invalid or missing Content ID: Ensure the provided content ID corresponds to an existing bookmark.
- Label not found: The label specified might not exist on the bookmark; verify the label name.
- Authentication errors: Confirm that the API credentials are correctly set up and valid.
- Network or API downtime: Check connectivity and Discuss Kit API status.
Error messages:
"error": "Label not found": The label to remove does not exist on the bookmark. Verify the label name."error": "Unauthorized"or similar: Authentication failed. Recheck API credentials."error": "Content not found": The content ID does not correspond to any bookmark. Validate the ID.
Resolving these typically involves verifying input parameters and ensuring proper API credentials.
Links and References
- Discuss Kit API Documentation (hypothetical link)
- n8n HTTP Request Node documentation for understanding API calls: https://docs.n8n.io/nodes/n8n-nodes-base.httpRequest/