Discuss Kit icon

Discuss Kit

Consume Discuss Kit API

Overview

This node interacts with the Discuss Kit API to manage various content types, including bookmarks. Specifically, the Delete operation for the Bookmark resource allows users to remove a bookmark by its unique content ID. This is useful in scenarios where you want to automate cleanup or management of saved bookmarks within a discussion or content platform.

Practical examples:

  • Automatically deleting outdated or irrelevant bookmarks from a knowledge base.
  • Removing bookmarks as part of a workflow triggered by user actions or external events.
  • Managing bookmark lifecycle programmatically without manual intervention.

Properties

Name Meaning
Content ID The unique identifier of the bookmark content to delete. This is required to specify which bookmark should be removed.

Output

The output JSON contains the response from the API after attempting to delete the bookmark. Typically, this will be an empty object or confirmation of deletion. The exact structure depends on the API but generally indicates success or failure of the delete request.

No binary data output is involved in this operation.

Dependencies

  • Requires access to the Discuss Kit API endpoint.
  • May require an API key or authentication token configured in n8n credentials (referred generically as "an API key credential").
  • Uses internal helper function to make HTTP requests to the API (blockletComponentApiRequest).

Troubleshooting

  • Common issues:

    • Providing an invalid or non-existent Content ID will likely result in an error or no action.
    • Missing or incorrect API authentication may cause authorization errors.
    • Network connectivity issues can prevent successful API calls.
  • Error messages and resolutions:

    • "Not Found" or similar: Verify that the Content ID exists and is correct.
    • "Unauthorized" or "Forbidden": Check that the API credentials are properly set up and have sufficient permissions.
    • Timeouts or network errors: Ensure stable internet connection and that the API endpoint is reachable.

Links and References

Discussion