createHighlight
Create a new highlight for a bookmark in Raindrop.io by specifying the text and bookmark ID. Add optional color and notes to organize and customize your highlights.
Instructions
Create a new highlight for a bookmark
Input Schema
Name | Required | Description | Default |
---|---|---|---|
color | No | Color for the highlight (e.g., "yellow", "#FFFF00") | |
note | No | Additional note for the highlight | |
raindropId | Yes | Bookmark ID | |
text | Yes | Highlighted text |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"color": {
"description": "Color for the highlight (e.g., \"yellow\", \"#FFFF00\")",
"type": "string"
},
"note": {
"description": "Additional note for the highlight",
"type": "string"
},
"raindropId": {
"description": "Bookmark ID",
"type": "number"
},
"text": {
"description": "Highlighted text",
"type": "string"
}
},
"required": [
"raindropId",
"text"
],
"type": "object"
}