WebCull
cli

Recordatorios

Create, list, and cancel bookmark reminders from the CLI.

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 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"
}

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.

Siguiente paso cli Salida Y Limites Control response size, field selection, paging, and output format.