updateHighlight
Modify existing highlights in Raindrop.io by updating text, color, or notes for better organization and clarity of saved bookmarks.
Instructions
Update an existing highlight
Input Schema
Name | Required | Description | Default |
---|---|---|---|
color | No | New color | |
id | Yes | Highlight ID | |
note | No | New note | |
text | No | New highlighted text |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"color": {
"description": "New color",
"type": "string"
},
"id": {
"description": "Highlight ID",
"type": "number"
},
"note": {
"description": "New note",
"type": "string"
},
"text": {
"description": "New highlighted text",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}