CLI Commands
The Nexudus CLI follows a consistentnexudus <entity> <action> pattern. Every entity supports a standard set of operations where applicable.
Command tree
New entity types are added regularly. Run
nexudus --help to see all currently available commands, or run nexudus doctor --agent to get a
machine-readable list.Public API Commands: The
nexudus public branch lets you interact with your coworking space as a member. See Public API Commands for the full reference.Global flags
These flags can be added to any command:Common operations
Listing entities
--namefilters results by name or keyword. Different entities support different parameter names.--businessscopes results to a specific business (location).--pageand--sizecontrol pagination. Default page size is 25; use--size 100for larger pages.--order-byspecifies the property to sort results by (e.g.,Name,CreatedOn,FromTime).--dirsets the sort direction:0for ascending,1for descending.
Each entity type has a default sort order (e.g., Bookings sort by
FromTime ascending). If you omit --order-by, the API applies this default. You can override it with any property that the entity exposes.Getting a single entity
List responses return a simplified projection without collection properties (e.g.,
Tariffs, Teams, LinkedResources). To see all fields including lists, always fetch the individual entity by ID with get <id>.Creating an entity
nexudus <entity> create --help to see all available options and which are required.
Updating an entity
Deleting an entity
--yes to skip the prompt in scripts:
Entity commands
Some entities support additional operations called “commands” (e.g., archiving, activating):Working with list properties
Some entities have list properties (e.g., tariffs on a resource, teams on a coworker). To set these, repeat the flag for each value:Image uploads
Some entities have image properties (logo, banner, picture). To set an image, provide a publicly accessible URL:Discovering options
You can always check available options for any command by appending--help: