WebCull
cli

Writes

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

Create Or Update One Bookmark At A Time

CLI writes are intentionally narrow. Use them when you want to create or update a specific bookmark or folder. Bulk changes, recursive changes, and automatic organization are not part of these commands.

Create A Bookmark Or Folder

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

Use --dry-run before saving when you want to confirm the destination, account access, or encrypted-account behavior first.

Patch Only The Fields That Should Change

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.

Next step cli Reminders Create, list, and cancel bookmark reminders from the CLI.