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 various content types such as discussions, blogs, bookmarks, and documentation. Specifically, for the Documentation resource with the Remove Label operation, it removes a specified label from a documentation content item identified by its ID.
Common scenarios where this node is useful include automating content management workflows, such as cleaning up or updating labels on documentation pages programmatically, integrating with other systems that track content metadata, or maintaining consistent labeling standards across documentation.
For example, if you have an automated process that tags documentation pages based on their status or topic, this node can be used to remove outdated or incorrect labels when those statuses change.
Properties
| Name | Meaning |
|---|---|
| Content ID | The unique identifier of the documentation content item from which the label will be removed. |
| Label | The name of the label to remove from the specified documentation content. |
Output
The output is a JSON array containing the response from the API after the label removal request. Since the operation performs a DELETE request without returning specific data, the output typically confirms success or provides error information if the removal failed.
No binary data is produced by this operation.
Example output structure (simplified):
[
{
"success": true
}
]
or in case of error:
[
{
"error": "Label not found"
}
]
Dependencies
- Requires access to the Discuss Kit API.
- Needs an API authentication token or key configured in n8n credentials to authorize requests.
- Uses the internal helper function to make HTTP requests to the Discuss Kit backend endpoints.
Troubleshooting
Common issues:
- Providing an invalid or non-existent Content ID will result in errors indicating the content was not found.
- Specifying a label that does not exist on the content will cause the API to return an error or no action.
- Missing or invalid API credentials will cause authentication failures.
Error messages:
"Label not found": The label specified does not exist on the content; verify the label name."Content not found": The Content ID is incorrect or the content has been deleted.- Authentication errors: Check that the API key or token is correctly set up in n8n credentials.
To resolve these, ensure the Content ID and label names are correct and that your API credentials are valid and have sufficient permissions.
Links and References
- Discuss Kit API Documentation (general reference for API endpoints)
- n8n HTTP Request Node Documentation (for understanding how API calls are made internally)