getHighlightsByCollection
Extract highlights from bookmarks within a specific collection using Raindrop.io. Simplify access to key insights by providing the collection ID for targeted retrieval.
Instructions
Get highlights for bookmarks in a specific collection
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collectionId | Yes | Collection ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"collectionId": {
"description": "Collection ID",
"type": "number"
}
},
"required": [
"collectionId"
],
"type": "object"
}