deleteTag
Remove a specific tag from all bookmarks or a designated collection in Raindrop.io. Simplify tag management and organize bookmarks efficiently.
Instructions
Remove a tag from all bookmarks or in a specific collection
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collectionId | No | Collection ID (optional) | |
tag | Yes | Tag to delete |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"collectionId": {
"description": "Collection ID (optional)",
"type": "number"
},
"tag": {
"description": "Tag to delete",
"type": "string"
}
},
"required": [
"tag"
],
"type": "object"
}