deleteTags
Remove specified tags from all bookmarks in Raindrop.io. Optionally target a specific collection. Simplify organization by eliminating unwanted tags.
Instructions
Delete tags from all bookmarks
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collectionId | No | Collection ID (optional) | |
tags | Yes | List of tags to delete |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"collectionId": {
"description": "Collection ID (optional)",
"type": "number"
},
"tags": {
"description": "List of tags to delete",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"tags"
],
"type": "object"
}