batchUpdateBookmarks
Update multiple bookmarks simultaneously in Raindrop.io by applying tags, marking as important, or moving to a specific collection for improved organization.
Instructions
Update multiple bookmarks at once
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collectionId | No | Collection ID to move bookmarks to | |
ids | Yes | List of bookmark IDs | |
important | No | Mark as important | |
tags | No | Tags to apply to all bookmarks |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"collectionId": {
"description": "Collection ID to move bookmarks to",
"type": "number"
},
"ids": {
"description": "List of bookmark IDs",
"items": {
"type": "number"
},
"type": "array"
},
"important": {
"description": "Mark as important",
"type": "boolean"
},
"tags": {
"description": "Tags to apply to all bookmarks",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"ids"
],
"type": "object"
}