Discuss Kit icon

Discuss Kit

Consume Discuss Kit API

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. Specifically, for the Documentation resource, it supports operations including creating, updating, publishing, deleting, pinning/unpinning, adding/removing labels or assignees, and settings adjustments.

The Unpin operation for the Documentation resource allows users to remove a pinned status from a specific document or content item by its ID. This is useful in scenarios where a previously highlighted or featured document should no longer be emphasized in the user interface or listings.

Practical example:
If you have a documentation page that was pinned for quick access but now needs to be unpinned (for instance, because it is outdated or replaced), this node operation can automate that process within your workflow.

Properties

Name Meaning
Content ID The unique identifier of the documentation content to unpin. This is a required string.

Output

  • The output JSON contains the response from the Discuss Kit API after attempting to unpin the specified documentation content.
  • Typically, this will include confirmation of the unpin action or details about the updated content state.
  • No binary data output is involved in this operation.

Dependencies

  • Requires an active connection to the Discuss Kit API.
  • Optionally uses an API key credential for authentication (configured in n8n credentials).
  • Relies on the internal helper function to make HTTP requests to the Discuss Kit API endpoints.

Troubleshooting

  • Common issues:

    • Invalid or missing Content ID: The operation requires a valid content ID; ensure the ID corresponds to an existing documentation item.
    • Authentication errors: Verify that the API key or authentication token is correctly configured.
    • Network or API downtime: Check connectivity and Discuss Kit service status.
  • Error messages:

    • "error": "Content not found" — The provided Content ID does not exist. Double-check the ID.
    • "error": "Unauthorized" — Authentication failed. Confirm API credentials.
    • Timeout or network errors — Retry or check network configuration.

Links and References

Discussion