Recordatorios
Programar Recordatorios Para Marcadores Especificos
Los comandos de recordatorio adjuntan un recordatorio pendiente a un marcador. Admiten crear, listar y cancelar. Use la app para editar recordatorios, recordatorios recurrentes o cambios masivos de recordatorios.
Crear
Crear Un Recordatorio De Marcador
webcull reminders create --bookmark-id 2302 --in 3h --note "Check if the pricing page changed."
{
"success": "true",
"action": "create",
"id": 789,
"bookmark_id": 2302,
"remind_at": "2026-06-14 18:00:00",
"note_status": "stored"
}
List and Cancel
Revisar O Cancelar Recordatorios Pendientes
webcull reminders list --bookmark-id 2302 --fields id,bookmark_id,remind_at,status,note_status
webcull reminders cancel 789 --dry-run
{
"success": "true",
"items": [
{
"id": 789,
"bookmark_id": 2302,
"remind_at": "2026-06-14 18:00:00",
"status": "pending",
"note_status": "stored"
}
]
}
Reminder notes follow the same privacy boundary as bookmark text. For E2EE accounts, notes are encrypted locally before they are sent to WebCull.