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 including bookmarks. Specifically, the "Update Settings" operation for the Bookmark resource allows users to update certain metadata settings of a bookmark item, such as its cover image or slug (a URL-friendly identifier). This is useful when you want to modify how a bookmark appears or is referenced without changing its core content.
Practical scenarios include:
- Updating the cover image of a saved bookmark to better represent its content.
- Changing the slug of a bookmark to improve SEO or readability in URLs.
Properties
| Name | Meaning |
|---|---|
| Content ID | The unique identifier of the bookmark content to update. |
Note: The provided input properties JSON only includes the "Content ID" property relevant for this operation.
Output
The output is a JSON object representing the updated bookmark resource returned from the Discuss Kit API after applying the settings changes. It typically contains fields such as the bookmark's ID, title, cover image URL, slug, and other metadata reflecting the current state of the bookmark.
No binary data output is involved in this operation.
Dependencies
- Requires access to the Discuss Kit API endpoint.
- Needs an API authentication token or API key credential configured in n8n 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 request to fail.
- Insufficient permissions or missing API credentials can result in authorization errors.
- Providing invalid values for cover or slug may lead to validation errors from the API.
Error messages:
"error": "Not Found"— The specified Content ID does not exist."error": "Unauthorized"— API credentials are missing or invalid."error": "Validation Failed"— One or more provided settings values are invalid.
Resolutions:
- Verify that the Content ID is correct and exists in the system.
- Ensure API credentials are properly set up in n8n.
- Check the format and validity of cover image URLs and slug strings before updating.
Links and References
- Discuss Kit API Documentation (hypothetical link)
- n8n HTTP Request Node Documentation (for understanding API calls)