updateBookmark
Modify existing bookmarks in Raindrop.io by updating titles, descriptions, tags, importance, or moving them to new collections for organized access.
Instructions
Update an existing bookmark
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collectionId | No | Collection ID to move the bookmark to | |
excerpt | No | Short excerpt or description | |
id | Yes | Bookmark ID | |
important | No | Mark as important | |
tags | No | List of tags | |
title | No | Title of the bookmark |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"collectionId": {
"description": "Collection ID to move the bookmark to",
"type": "number"
},
"excerpt": {
"description": "Short excerpt or description",
"type": "string"
},
"id": {
"description": "Bookmark ID",
"type": "number"
},
"important": {
"description": "Mark as important",
"type": "boolean"
},
"tags": {
"description": "List of tags",
"items": {
"type": "string"
},
"type": "array"
},
"title": {
"description": "Title of the bookmark",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}