setReminder
Schedule reminders for bookmarks on Raindrop.io by specifying a date and optional note to stay organized and revisit important links.
Instructions
Set a reminder for a bookmark
Input Schema
Name | Required | Description | Default |
---|---|---|---|
date | Yes | Reminder date (ISO format) | |
note | No | Reminder note | |
raindropId | Yes | Bookmark ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"date": {
"description": "Reminder date (ISO format)",
"type": "string"
},
"note": {
"description": "Reminder note",
"type": "string"
},
"raindropId": {
"description": "Bookmark ID",
"type": "number"
}
},
"required": [
"raindropId",
"date"
],
"type": "object"
}