bulkTagBookmarks
Efficiently add or remove tags from multiple bookmarks in Raindrop.io to organize and manage your saved links with ease.
Instructions
Add or remove tags from multiple bookmarks
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ids | Yes | List of bookmark IDs | |
| operation | Yes | Whether to add or remove the specified tags | |
| tags | Yes | Tags to apply |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"ids": {
"description": "List of bookmark IDs",
"items": {
"type": "number"
},
"type": "array"
},
"operation": {
"description": "Whether to add or remove the specified tags",
"enum": [
"add",
"remove"
],
"type": "string"
},
"tags": {
"description": "Tags to apply",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"ids",
"tags",
"operation"
],
"type": "object"
}