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, documentation, comments, labels, boards, and search queries. It allows users to perform CRUD operations (create, read, update, delete) and other management tasks on these resources.
For the Documentation resource with the Get operation, the node retrieves a specific documentation entry by its ID. This is useful when you want to fetch detailed information about a particular document stored in the Discuss Kit system.
Practical example:
You have a documentation page identified by an ID and want to retrieve its full details (title, content, metadata) to display or process further in your workflow.
Properties
| Name | Meaning |
|---|---|
| Content ID | The unique identifier of the documentation content to retrieve. This is a required field. |
Output
- The output is a JSON object representing the requested documentation content.
- The structure corresponds to the data returned by the Discuss Kit API for a single documentation item, typically including fields like
id,title,content,locale,slug,order,parentId, and other metadata. - No binary data output is involved in 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 uses a helper function to make HTTP requests to the Discuss Kit API (
blockletComponentApiRequest). - No additional external dependencies beyond the Discuss Kit API and standard n8n environment.
Troubleshooting
Common issues:
- Invalid or missing Content ID will cause the API request to fail.
- Network connectivity problems or incorrect API credentials can result in authorization errors or timeouts.
- If the specified documentation ID does not exist, the API may return a 404 error.
Error messages and resolutions:
"error": "Content not found"— Verify that the Content ID is correct and exists in the Discuss Kit system."Unauthorized"or"Authentication failed"— Check that the API key or authentication token is properly configured in n8n credentials.- Timeout or network errors — Ensure the Discuss Kit API endpoint is reachable from your n8n instance.
Links and References
- Discuss Kit Official Documentation (for API details and content management)
- n8n HTTP Request Node Documentation (for understanding API request handling)