Actions66
- Board Actions
- Bookmark Actions
- Blog Actions
- Comment Actions
- Discussion Actions
- Documentation Actions
- Label Actions
- Search Actions
Overview
This node integrates with the Discuss Kit API to manage various content types such as discussions, blogs, bookmarks, and documentation. Specifically, for the Documentation resource with the Add Label operation, it allows users to add a label to a specific documentation post by its ID.
Common scenarios where this node is beneficial include:
- Organizing documentation posts by tagging them with relevant labels for easier filtering and categorization.
- Automating content management workflows where labels are dynamically assigned based on external triggers or conditions.
- Enhancing searchability and metadata enrichment of documentation content within a knowledge base or community platform.
For example, you might use this node to automatically tag newly created documentation pages with labels like "Getting Started" or "API Reference" to help users find related content quickly.
Properties
| Name | Meaning |
|---|---|
| Content ID | The unique identifier of the documentation content (post) to which the label will be added. |
| Label | The label string to add to the specified documentation content. |
Output
The node outputs a JSON array containing the updated data returned from the API after adding the label. This typically includes the current state of the documentation post with the newly added label reflected in its metadata.
No binary data output is produced by this operation.
Dependencies
- Requires access to the Discuss Kit API endpoint.
- Optionally uses an API authentication token or key configured in n8n credentials to authorize requests.
- The node relies on internal helper functions to make HTTP requests to the Discuss Kit API.
Troubleshooting
Common issues:
- Invalid or missing Content ID: Ensure the provided content ID corresponds to an existing documentation post.
- Label not applied: Verify that the label string is valid and that the user has permission to modify the content.
- API authentication errors: Confirm that the API key or token is correctly configured and has sufficient privileges.
Error messages:
"error": "Content not found": The specified Content ID does not exist; check the ID value."error": "Unauthorized": Authentication failed; verify API credentials.- Network or timeout errors: Check network connectivity and API availability.
To resolve these, double-check input parameters, ensure proper credential setup, and confirm API service status.