Loby CLI

The Loby CLI lists every museum, then lists, creates, and updates tasks across museums.

Authenticate with a platform API key from Admin → Tokens (WRITE_TASKS). Museum REST keys from Developer Settings do not work with this CLI.

Install

Copy
curl -fsSL https://releases.loby.io/cli/install.sh | sh

The installer prints the next command if this shell needs loby on PATH. Full steps: Installation.

Commands

Copy
loby version loby auth login loby museums list loby tasks list [--filter JSON] [--search TEXT] [--sorting JSON] [--limit N] [--offset N] [--include-deleted] loby tasks get <id> loby tasks create --museum-id ID --title TITLE [--description TEXT] [--status STATUS] [--due MS] loby tasks update <id> [--title TITLE] [--description TEXT] [--status STATUS] [--due MS] loby tasks delete <id>

There is a soft-delete command (loby tasks delete). Lists hide deleted tasks unless --include-deleted. Cancel a task with --status CANCELLED. Dates are Unix milliseconds UTC.

Museums

loby museums list returns every museum as id then name, tab-separated. Use that id for --museum-id on create and for museumId in task filters. Do not guess ids.

Copy
loby museums list
Copy
a1b2c3d4-... Acme Museum e5f6a7b8-... Another Museum
Next
Installation