Discuss Kit icon

Discuss Kit

Consume Discuss Kit API

Overview

The node integrates with the Discuss Kit API to manage various content types including bookmarks. Specifically, for the Bookmark resource and the Publish operation, it publishes an existing bookmark identified by its Content ID. This is useful in workflows where bookmarks are created or updated as drafts or private items and need to be made publicly available or officially published later.

Practical examples:

  • Automating the publication of saved bookmarks after review.
  • Integrating with other systems to trigger bookmark publishing based on external events.
  • Batch publishing multiple bookmarks in a workflow.

Properties

Name Meaning
Content ID The unique identifier (ID) of the bookmark content to publish.

Output

The output is a JSON object representing the response from the Discuss Kit API after publishing the bookmark. It typically contains the updated bookmark data including its published status and metadata.

No binary data output is involved in this operation.

Dependencies

  • Requires access to the Discuss Kit API endpoint.
  • Needs an API authentication token or key configured in n8n credentials to authorize requests.
  • Uses internal helper functions to make HTTP requests to the Discuss Kit API.

Troubleshooting

  • Common issues:

    • Invalid or missing Content ID will cause the API call to fail.
    • Authentication errors if the API key/credential is not set or invalid.
    • Network or timeout errors when connecting to the Discuss Kit API.
  • Error messages:

    • "error": "Content not found" — Verify the Content ID is correct and exists.
    • "error": "Unauthorized" — Check that the API credential is properly configured.
    • Timeout or connection errors — Ensure network connectivity and API availability.
  • Resolutions:

    • Double-check the Content ID input.
    • Confirm API credentials in n8n settings.
    • Retry or increase timeout settings if network issues persist.

Links and References

Discussion