WebCull
cli

Écritures

Create or update one bookmark or folder with narrow, explicit write commands.

Creer Ou Mettre A Jour Un Favori A La Fois

Les écritures CLI sont volontairement limitées. Utilisez-les lorsque vous voulez créer ou mettre à jour un favori ou dossier précis. Les changements en masse, changements récursifs et l'organisation automatique ne font pas partie de ces commandes.

Creer Un Favori Ou Un Dossier

webcull bookmarks create --url https://acme.example/pricing --title "Acme pricing" --parent-id 2301 --dry-run
{
  "success": "true",
  "dry_run": "true",
  "action": "create",
  "id": 2302,
  "type": "bookmark",
  "parent_id": 2301,
  "would_update": ["url", "title", "parent_id"]
}

Utilisez --dry-run avant d'enregistrer lorsque vous voulez d'abord confirmer la destination, l'accès au compte ou le comportement d'un compte chiffré.

Corriger Seulement Les Champs Qui Doivent Changer

webcull bookmarks update 2302 --notes "Review before Q3 campaign planning."
{
  "success": "true",
  "action": "update",
  "id": 2302,
  "type": "bookmark",
  "parent_id": 2301
}

Update commands preserve fields not included in the command. Send the narrowest patch that completes the requested change.

Étape suivante cli Rappels Create, list, and cancel bookmark reminders from the CLI.