nexudus
Nexudus CLI Agent Skill
You can manage Nexudus coworking spaces through the nexudus CLI tool. This skill teaches you how to authenticate, query data, and perform CRUD operations against the Nexudus platform API.
Agent Invariants
-
Always use
--agentflag on every CLI call. This returns a structured JSON envelope optimised for machine consumption. -
Parse the JSON envelope before acting on results. The envelope has this shape:
{ "ok": true, "data": { ... }, "summary": "Human-readable summary", "breadcrumbs": ["entity", "action"], "meta": { "total": 10, "page": 1, "pageSize": 25, "totalPages": 1 } } -
Check
okfirst. Ifokisfalse, readsummaryfor the error message and stop. -
Never prompt the user for credentials interactively. If
okisfalsewith an auth error, tell the user to runnexudus loginmanually. -
Use
--yesor-yon delete commands to skip interactive confirmation prompts. -
Use
--jsonwhen you need raw data for scripting. Use--agentwhen you want the envelope with summary. -
List responses omit collection properties. The API only returns list/array fields (e.g.,
Tariffs,Teams,LinkedResources) when fetching a single entity by ID (get <id>). List commands return a simplified projection without these fields. If you need to read or verify a collection property, always fetch the individual entity first. -
Use the current user's defaults for business, currency, country, and timezone. Before creating or updating entities that require a business (location), currency, country, or timezone, run
nexudus whoami --agentand use the defaults from the response:DefaultBusinessId— use as--businesswhen creating entities scoped to a location.DefaultCurrencyId— use as--currency-idwhen a currency is needed.DefaultCurrencyCode— for display/reference purposes.DefaultCountryId— use as--country-idwhen a country is needed.DefaultSimpleTimeZoneId— use as--timezone-idwhen a timezone is needed.
Only ask the user to specify these values if they explicitly want to override the defaults.
-
Prefer
--{list}over--added-{list}/--removed-{list}for list properties. When setting a list field (e.g.,--tariffs,--resource-types,--teams,--linked-resources), use the plain--{list}flag to replace the entire list with the supplied values. Only use--added-{list}or--removed-{list}when you specifically need to add or remove individual items from the existing list without touching the rest of its contents. Passing--added-{list}when you mean to set the full list is a common mistake that leaves stale entries in place. -
When unsure about a field, run
--helpfirst. If the entity or option is not fully documented in this skill file, runnexudus <entity> <command> --helpto discover available options and their descriptions before constructing the command. -
DateTime values must use ISO 8601 format. All DateTime fields must be passed as
YYYY-MM-DDTHH:MM:SSZ(UTC) — for example2025-06-15T09:00:00Z. Never use locale-specific formats likeJune 15, 2025,15/06/2025, or Unix timestamps. Entity reference files annotate DateTime options with(DateTime)so you can identify them. -
Always pass telemetry context flags on every CLI call. See the Telemetry Context section below for the required flags and how to generate values.
Bootstrapping
Run diagnostics first to verify the CLI is ready:
nexudus doctor --agent
This returns CLI version, .NET runtime, OS, credential status, config file location, API connectivity, and all available commands. Check data.CredentialsStored and data.ApiStatus before proceeding.
If credentials are missing, instruct the user:
Run
nexudus loginto authenticate with your Nexudus account.
CLI Introspection
Discover available commands and options at any time:
nexudus --help
nexudus businesses --help
nexudus products --help
nexudus config --help
Each command also supports --help for detailed option information:
nexudus businesses update --help
nexudus products create --help
Command Reference
Authentication
| Command | Description |
|---|---|
nexudus login |
Authenticate (interactive prompt) |
nexudus logout |
Clear stored credentials |
nexudus whoami |
Show current authenticated user |
Configuration
| Command | Description |
|---|---|
nexudus config get <key> |
Read a config value |
nexudus config set <key> <value> |
Set a config value |
Config keys: base-url
Diagnostics
nexudus doctor --agent
Global Flags
| Flag | Description |
|---|---|
--agent |
JSON envelope with summary (use this) |
--json |
Raw JSON envelope |
--md |
Markdown output |
--base-url <url> |
Override API base URL |
--trace-id <uuid> |
Trace ID to correlate commands within a single task |
--caller <name> |
Name of the invoking agent (e.g., copilot, claude) |
--intent <text> |
One-line summary of the user's request |
--attempt <n> |
Attempt number for this command (1 = first try) |
Telemetry Context
Every CLI call from an agent must include the four telemetry flags so command usage can be tracked, correlated, and debugged.
| Flag | How to set | Example |
|---|---|---|
--trace-id |
Generate one UUID per user task and reuse it for every CLI call in that task. | --trace-id a1b2c3d4-e5f6-7890-abcd-ef1234567890 |
--caller |
A fixed string identifying your agent. Use your agent name in lowercase. | --caller copilot |
--intent |
A short (≤120 char) summary of what the user asked for. Same for all calls in the task. Quote spaces. | --intent "list all products for the London business" |
--attempt |
Start at 1. Increment if you retry the same command after a failure. Reset to 1 for different commands. |
--attempt 1 |
Example: full call with telemetry
nexudus products list --agent --trace-id a1b2c3d4-e5f6-7890-abcd-ef1234567890 --caller copilot --intent "list all products" --attempt 1
Rules
- Same
--trace-idfor every call within the same user task / conversation turn. - Increment
--attemptonly when retrying the exact same command after a failure. --callermust stay constant for the agent's lifetime (e.g.,copilot,claude,custom-bot).--intentshould be the user's original request, not the CLI command description.- When
--agentis set and telemetry flags are present, the response envelope includes atelemetryobject withtraceId,durationMs, andattemptfor your reference.
Output Envelope
All commands produce a JSON envelope when --agent or --json is used:
{
"ok": true,
"data": [ ... ],
"summary": "Found 3 businesses (page 1/1)",
"breadcrumbs": ["businesses", "list"],
"meta": {
"total": 3,
"page": 1,
"pageSize": 25,
"totalPages": 1
}
}
ok:trueon success,falseon failure.data: The response payload — an object for single-entity operations, an array for lists, or null on some failures.summary: Human-readable result description.breadcrumbs: Command path that produced the output (e.g.,["products", "create"]).meta: Pagination metadata for list operations (present only on list commands).
Error envelope
{
"ok": false,
"data": null,
"summary": "Not logged in. Run 'nexudus login' first.",
"breadcrumbs": ["businesses", "list"]
}
Decision Trees
"Find and display a business"
nexudus businesses list --agent(or use filter options like--name "value"if searching)- Parse
dataarray, find the target business nexudus businesses get <id> --agentfor full details
"Create a entity"
- First find the business ID:
nexudus businesses list --agent nexudus <entity> create --name "Day Pass" --price 25.00 --business <businessId> --agent- Check
okistrue, readdata.Idfor the new entity ID
"Update a entity property"
nexudus <entity> get <id> --agentto verify the entity existsnexudus <entity> update <id> --<property> <value> --agent- Verify the update by checking the returned
data
"Delete a entity"
nexudus <entity> get <id> --agentto confirm the entity existsnexudus <entity> delete <id> --yes --agent- Check
okistrue
"List entity for a specific business"
nexudus <entity> list --business <businessId> --agent- For pagination: add
--page-number N --page-size M
"Run an entity command on entity"
nexudus <entity> commands --agentto discover available commandsnexudus <entity> run-command <commandKey> <id1,id2> --agent- Add parameters with
-p Name=Valueif the command requires them
"Check CLI health"
nexudus doctor --agent- Verify
data.CredentialsStoredistrue - Verify
data.ApiStatusis"OK"
Entity-specific workflows (e.g., adding passes to a product, setting up pricing) are documented in the corresponding entity reference file under
references/entities/.
Error Handling
| Error | Meaning | Action |
|---|---|---|
ok: false, summary contains "Not logged in" |
No stored credentials | Tell user to run nexudus login |
ok: false, summary contains "Unauthorized" |
Invalid credentials | Tell user to run nexudus login again |
ok: false, summary contains "Forbidden" |
Insufficient permissions | Inform user they lack API permissions |
ok: false, summary contains "not found" |
Entity doesn't exist | Check the ID and try again |
ok: false, summary contains "Failed to create" |
Create validation error | Check required fields (name, business, price) |
| Non-zero exit code | Command failed | Read stderr or the JSON envelope for details |
Entity Index
Before working with an entity, load its reference file for full details (commands, options, key fields, enum values, and entity-specific workflows).
| Entity | CLI command | Operations | Reference |
|---|---|---|---|
| AccessToken | accesstokens |
list, get, create, update, delete | accesstokens.md |
| Application | applications |
list, get, create, update, delete | applications.md |
| AudioFile | audiofiles |
list, get, create, update, delete | audiofiles.md |
| AuditTrailEntry | audittrailentries |
list, get | audittrailentries.md |
| AutomationTile | automationtiles |
list, get, create, update, delete | automationtiles.md |
| AutomationTileAudit | automationtileaudits |
list, get, create, update, delete | automationtileaudits.md |
| BasketSession | basketsessions |
list, get, create, update, delete | basketsessions.md |
| BlogCategory | blogcategories |
list, get, create, update, delete | blogcategories.md |
| BlogPost | blogposts |
list, get, create, update, delete | blogposts.md |
| BlogPostComment | blogpostcomments |
list, get, create, update, delete | blogpostcomments.md |
| Booking | bookings |
list, get, create, update, delete | bookings.md |
| BookingAvailabilityException | bookingavailabilityexceptions |
list, get, create, update, delete | bookingavailabilityexceptions.md |
| BookingNote | bookingnotes |
list, get, create, update, delete | bookingnotes.md |
| BookingProduct | bookingproducts |
list, get, create, update, delete | bookingproducts.md |
| BookingVisitor | bookingvisitors |
list, get, create, update, delete | bookingvisitors.md |
| Business | businesses |
list, get, update | businesses.md |
| BusinessAnnouncement | businessannouncements |
list, get, create, update, delete | businessannouncements.md |
| BusinessBackgroundJob | businessbackgroundjobs |
list, get | businessbackgroundjobs.md |
| BusinessCharge | businesscharges |
list, get, create, update, delete | businesscharges.md |
| BusinessDomain | businessdomains |
list, get, create, update, delete | businessdomains.md |
| BusinessRedirection | businessredirections |
list, get, create, update, delete | businessredirections.md |
| BusinessSetting | businesssettings |
list, get, create, update, delete | businesssettings.md |
| BusinessTimeSlot | businesstimeslots |
list, get, create, update, delete | businesstimeslots.md |
| CalendarEvent | calendarevents |
list, get, create, update, delete | calendarevents.md |
| CalendarEventCategory | calendareventcategories |
list, get, create, update, delete | calendareventcategories.md |
| CancelledBooking | cancelledbookings |
list, get, create, update, delete | cancelledbookings.md |
| CannedResponse | cannedresponses |
list, get, create, update, delete | cannedresponses.md |
| Charge | charges |
list, get, create, update, delete | charges.md |
| ChatRoom | chatrooms |
list, get, create, update, delete | chatrooms.md |
| ChatUserMessage | chatusermessages |
list, get, create, update, delete | chatusermessages.md |
| Checkin | checkins |
list, get, create, update, delete | checkins.md |
| CommunityGroup | communitygroups |
list, get, create, update, delete | communitygroups.md |
| CommunityMessage | communitymessages |
list, get, create, update, delete | communitymessages.md |
| CommunityMessageLike | communitymessagelikes |
list, get, create, update, delete | communitymessagelikes.md |
| CommunityPerk | communityperks |
list, get, create, update, delete | communityperks.md |
| CommunityThread | communitythreads |
list, get, create, update, delete | communitythreads.md |
| CommunityThreadFile | communitythreadfiles |
list, get, create, update, delete | communitythreadfiles.md |
| CommunityThreadFollow | communitythreadfollows |
list, get, create, update, delete | communitythreadfollows.md |
| CommunityThreadLike | communitythreadlikes |
list, get, create, update, delete | communitythreadlikes.md |
| CommunityThreadMute | communitythreadmutes |
list, get, create, update, delete | communitythreadmutes.md |
| ContractContact | contractcontacts |
list, get, create, update, delete | contractcontacts.md |
| ContractDeposit | contractdeposits |
list, get, create, update, delete | contractdeposits.md |
| ContractPausedPeriod | contractpausedperiods |
list, get, create, update, delete | contractpausedperiods.md |
| ContractProduct | contractproducts |
list, get, create, update, delete | contractproducts.md |
| ContractSchedule | contractschedules |
list, get, create, update, delete | contractschedules.md |
| Country | countries |
list, get | countries.md |
| Course | courses |
list, get, create, update, delete | courses.md |
| CourseCompletedLesson | coursecompletedlessons |
list, get, create, update, delete | coursecompletedlessons.md |
| CourseLesson | courselessons |
list, get, create, update, delete | courselessons.md |
| CourseMember | coursemembers |
list, get, create, update, delete | coursemembers.md |
| CourseSection | coursesections |
list, get, create, update, delete | coursesections.md |
| Coworker | coworkers |
list, get, create, update, commands | coworkers.md |
| CoworkerAccessControlAudit | coworkeraccesscontrolaudits |
list, get, create, update, delete | coworkeraccesscontrolaudits.md |
| CoworkerBookingCredit | coworkerbookingcredits |
list, get, create, update, delete | coworkerbookingcredits.md |
| CoworkerBookingCreditUseHistory | coworkerbookingcreditusehistories |
list, get, create, update | coworkerbookingcreditusehistories.md |
| CoworkerContract | coworkercontracts |
list, get, create, update, delete | coworkercontracts.md |
| CoworkerDataFile | coworkerdatafiles |
list, get, create, update, delete | coworkerdatafiles.md |
| CoworkerDelivery | coworkerdeliveries |
list, get, create, update, delete | coworkerdeliveries.md |
| CoworkerDiscountCode | coworkerdiscountcodes |
list, get, create, update, delete | coworkerdiscountcodes.md |
| CoworkerExtraService | coworkerextraservices |
list, get, create, update, delete | coworkerextraservices.md |
| CoworkerExtraServiceUseHistory | coworkerextraserviceusehistories |
list, get, create, update, delete | coworkerextraserviceusehistories.md |
| CoworkerGoogleCalendar | coworkergooglecalendars |
list, get, create, update, delete | coworkergooglecalendars.md |
| CoworkerIdentityCheck | coworkeridentitychecks |
list, get, create, update, delete | coworkeridentitychecks.md |
| CoworkerIdentityCheckDocument | coworkeridentitycheckdocuments |
list, get, create, update, delete | coworkeridentitycheckdocuments.md |
| CoworkerInventoryAsset | coworkerinventoryassets |
list, get, create, update, delete | coworkerinventoryassets.md |
| CoworkerInvoice | coworkerinvoices |
list, get, update | coworkerinvoices.md |
| CoworkerInvoiceHistory | coworkerinvoicehistories |
list, get, create, update, delete | coworkerinvoicehistories.md |
| CoworkerInvoiceLine | coworkerinvoicelines |
list, get, update | coworkerinvoicelines.md |
| CoworkerInvoicePaymentToken | coworkerinvoicepaymenttokens |
list, get, create, update, delete | coworkerinvoicepaymenttokens.md |
| CoworkerLedgerEntry | coworkerledgerentries |
list, get, create, update, delete | coworkerledgerentries.md |
| CoworkerLegalContentAudit | coworkerlegalcontentaudits |
list, get, create, update, delete | coworkerlegalcontentaudits.md |
| CoworkerMessage | coworkermessages |
list, get | coworkermessages.md |
| CoworkerMsOfficeCalendar | coworkermsofficecalendars |
list, get, create, update, delete | coworkermsofficecalendars.md |
| CoworkerNote | coworkernotes |
list, get, create, update, delete | coworkernotes.md |
| CoworkerNotification | coworkernotifications |
list, get, create, update, delete | coworkernotifications.md |
| CoworkerPaymentMethod | coworkerpaymentmethods |
list, get, create, update, delete | coworkerpaymentmethods.md |
| CoworkerPricePlanHistory | coworkerpriceplanhistories |
list, get | coworkerpriceplanhistories.md |
| CoworkerProduct | coworkerproducts |
list, get, create, update, delete | coworkerproducts.md |
| CoworkerReminderAudit | coworkerreminderaudits |
list, get, create, update, delete | coworkerreminderaudits.md |
| CoworkerSetting | coworkersettings |
list, get, create, update, delete | coworkersettings.md |
| CoworkerTask | coworkertasks |
list, get, create, update, delete | coworkertasks.md |
| CoworkerTimePass | coworkertimepasses |
list, get, create, update, delete | coworkertimepasses.md |
| CrmBoard | crmboards |
list, get, create, update, delete | crmboards.md |
| CrmBoardColumn | crmboardcolumns |
list, get, create, update, delete | crmboardcolumns.md |
| CrmOpportunity | crmopportunities |
list, get, create, update, delete | crmopportunities.md |
| CrmOpportunityHistory | crmopportunityhistories |
list, get, create, update, delete | crmopportunityhistories.md |
| CrmOpportunityImportFile | crmopportunityimportfiles |
list, get, create, update, delete | crmopportunityimportfiles.md |
| Currency | currencies |
list, get | currencies.md |
| CustomField | customfields |
list, get, create, update, delete | customfields.md |
| DataFile | datafiles |
list, get, create, update, delete | datafiles.md |
| DiscountCode | discountcodes |
list, get, create, update, delete | discountcodes.md |
| DocumentTemplate | documenttemplates |
list, get, create, update, delete | documenttemplates.md |
| EloxxLockersAudit | eloxxlockersaudits |
list, get, create, update, delete | eloxxlockersaudits.md |
| EmailAccount | emailaccounts |
list, get, create, update, delete | emailaccounts.md |
| EmailQueueItem | emailqueueitems |
list, get | emailqueueitems.md |
| EmailQueueItemAttachment | emailqueueitemattachments |
list, get, update | emailqueueitemattachments.md |
| EmailTemplateFile | emailtemplatefiles |
list, get, create, update, delete | emailtemplatefiles.md |
| EventAttendee | eventattendees |
list, get, create, update, delete | eventattendees.md |
| EventComment | eventcomments |
list, get, create, update, delete | eventcomments.md |
| EventProduct | eventproducts |
list, get, create, update, delete | eventproducts.md |
| EventWaitingAttendee | eventwaitingattendees |
list, get, create, update, delete | eventwaitingattendees.md |
| ExtraService | extraservices |
list, get, create, update, delete | extraservices.md |
| ExtraServicePrice | extraserviceprices |
list, get, create, update, delete | extraserviceprices.md |
| ExtraServiceTimeSlot | extraservicetimeslots |
list, get, create, update, delete | extraservicetimeslots.md |
| FailedCheckin | failedcheckins |
list, get, create, update, delete | failedcheckins.md |
| FaqArticle | faqarticles |
list, get, create, update, delete | faqarticles.md |
| FinancialAccount | financialaccounts |
list, get, create, update, delete | financialaccounts.md |
| FloorPlan | floorplans |
list, get, create, update, delete | floorplans.md |
| FloorPlanAsset | floorplanassets |
list, get | floorplanassets.md |
| FloorPlanDesk | floorplandesks |
list, get, create, update, delete | floorplandesks.md |
| FloorPlanDeskVariant | floorplandeskvariants |
list, get, create, update, delete | floorplandeskvariants.md |
| FloorPlanLayout | floorplanlayouts |
list, get, create, update, delete | floorplanlayouts.md |
| FloorPlanLayoutArea | floorplanlayoutareas |
list, get, create, update, delete | floorplanlayoutareas.md |
| FloorPlanLayoutAsset | floorplanlayoutassets |
list, get, create, update, delete | floorplanlayoutassets.md |
| FloorPlanLayoutEdge | floorplanlayoutedges |
list, get, create, update, delete | floorplanlayoutedges.md |
| FloorPlanLayoutNode | floorplanlayoutnodes |
list, get, create, update, delete | floorplanlayoutnodes.md |
| FloorPlanLayoutOpening | floorplanlayoutopenings |
list, get, create, update, delete | floorplanlayoutopenings.md |
| FloorplanLayoutTransition | floorplanlayouttransitions |
list, get, create, update, delete | floorplanlayouttransitions.md |
| FormPage | formpages |
list, get, create, update, delete | formpages.md |
| FormPageAnswer | formpageanswers |
list, get, create, update | formpageanswers.md |
| FormPageQuestion | formpagequestions |
list, get, create, update, delete | formpagequestions.md |
| FormPageRequest | formpagerequests |
list, get, create, update, delete | formpagerequests.md |
| GlobalChatMessage | globalchatmessages |
list, get, create, update, delete | globalchatmessages.md |
| HelpDeskComment | helpdeskcomments |
list, get, create, update, delete | helpdeskcomments.md |
| HelpDeskDepartment | helpdeskdepartments |
list, get, create, update, delete | helpdeskdepartments.md |
| HelpDeskMessage | helpdeskmessages |
list, get, create, update, delete | helpdeskmessages.md |
| ImageFile | imagefiles |
list, get, create, update, delete | imagefiles.md |
| InstalledApplication | installedapplications |
list, get, create, update, delete | installedapplications.md |
| InstalledMarketPlaceApplication | installedmarketplaceapplications |
list, get, create, update, delete | installedmarketplaceapplications.md |
| InventoryAsset | inventoryassets |
list, get, create, update, delete | inventoryassets.md |
| Invoice | invoices |
list, get, update | invoices.md |
| Language | languages |
list, get, create, update, delete | languages.md |
| LanguageToken | languagetokens |
list, get, create, update, delete | languagetokens.md |
| LedgerEntry | ledgerentries |
list, get | ledgerentries.md |
| LegalContentAudit | legalcontentaudits |
list, get, create, update, delete | legalcontentaudits.md |
| LogEntry | logentries |
list, get | logentries.md |
| MarketPlaceApplication | marketplaceapplications |
list, get, create, update, delete | marketplaceapplications.md |
| MsOfficeAdminCalendar | msofficeadmincalendars |
list, get, create, update, delete | msofficeadmincalendars.md |
| NewsLetter | newsletters |
list, get, create, update, delete | newsletters.md |
| NewsLetterSubscriber | newslettersubscribers |
list, get, create, update, delete | newslettersubscribers.md |
| OpenAiChatMessage | openaichatmessages |
list, get, create, update, delete | openaichatmessages.md |
| OpportunityType | opportunitytypes |
list, get, create, update, delete | opportunitytypes.md |
| PassportCard | passportcards |
list, get, create, update, delete | passportcards.md |
| PaymentGateway | paymentgateways |
list, get, create, update, delete | paymentgateways.md |
| PayoutInvoice | payoutinvoices |
list, get, create, update, delete | payoutinvoices.md |
| PlatformChangeMessage | platformchangemessages |
list, get, create, update, delete | platformchangemessages.md |
| Product | products |
list, get, create, update, delete, commands | products.md |
| ProductBookingCredit | productbookingcredits |
list, get, create, update, delete | productbookingcredits.md |
| ProductExtraService | productextraservices |
list, get, create, update, delete | productextraservices.md |
| ProductTimePass | producttimepasses |
list, get, create, update, delete | producttimepasses.md |
| Proposal | proposals |
list, get, create, update, delete | proposals.md |
| ProposalContract | proposalcontracts |
list, get, create, update, delete | proposalcontracts.md |
| ProposalContractSchedule | proposalcontractschedules |
list, get, create, update, delete | proposalcontractschedules.md |
| ProposalProduct | proposalproducts |
list, get, create, update, delete | proposalproducts.md |
| ProposalSchedule | proposalschedules |
list, get, create, update, delete | proposalschedules.md |
| RadiusServer | radiusservers |
list, get, create, update, delete | radiusservers.md |
| RefreshToken | refreshtokens |
list, get, create, update, delete | refreshtokens.md |
| RegisteredDevice | registereddevices |
list, get, update | registereddevices.md |
| Reminder | reminders |
list, get, create, update, delete | reminders.md |
| Report | reports |
list, get, create, update, delete | reports.md |
| Reseller | resellers |
list, get, create, update, delete | resellers.md |
| ResellerAccount | reselleraccounts |
list, get, create, update, delete | reselleraccounts.md |
| ResellerPayout | resellerpayouts |
list, get, create, update, delete | resellerpayouts.md |
| Resource | resources |
list, get, create, update, delete | resources.md |
| ResourceAccessRule | resourceaccessrules |
list, get, create, update, delete | resourceaccessrules.md |
| ResourceAccessRuleEligibleTimeSlot | resourceaccessruleeligibletimeslots |
list, get, create, update, delete | resourceaccessruleeligibletimeslots.md |
| ResourceAccessRuleTimeSlot | resourceaccessruletimeslots |
list, get, create, update, delete | resourceaccessruletimeslots.md |
| ResourceProduct | resourceproducts |
list, get, create, update, delete | resourceproducts.md |
| ResourceTimeSlot | resourcetimeslots |
list, get, create, update, delete | resourcetimeslots.md |
| ResourceType | resourcetypes |
list, get, create, update, delete | resourcetypes.md |
| Role | roles |
list, get | roles.md |
| Sensor | sensors |
list, get, create, update, delete | sensors.md |
| SensorHistory | sensorhistories |
list, get, create, update, delete | sensorhistories.md |
| SimpleTimeZone | simpletimezones |
list, get, update | simpletimezones.md |
| SubscriberActivity | subscriberactivities |
list, get | subscriberactivities.md |
| SubscriberGroup | subscribergroups |
list, get, create, update, delete | subscribergroups.md |
| Survey | surveys |
list, get, create, update, delete | surveys.md |
| SurveyAnswer | surveyanswers |
list, get, create, update, delete | surveyanswers.md |
| SurveyQuestion | surveyquestions |
list, get, create, update, delete | surveyquestions.md |
| SurveyRun | surveyruns |
list, get, create, update, delete | surveyruns.md |
| SystemNotification | systemnotifications |
list, get, create, update, delete | systemnotifications.md |
| Tariff | tariffs |
list, get, create, update, delete | tariffs.md |
| TariffBookingCredit | tariffbookingcredits |
list, get, create, update, delete | tariffbookingcredits.md |
| TariffDefaultDueDate | tariffdefaultduedates |
list, get, create, update, delete | tariffdefaultduedates.md |
| TariffExtraService | tariffextraservices |
list, get, create, update, delete | tariffextraservices.md |
| TariffProduct | tariffproducts |
list, get, create, update, delete | tariffproducts.md |
| TariffSignupProduct | tariffsignupproducts |
list, get, create, update, delete | tariffsignupproducts.md |
| TariffTimePass | tarifftimepasses |
list, get, create, update, delete | tarifftimepasses.md |
| TaskItem | taskitems |
list, get, create, update, delete | taskitems.md |
| TaskList | tasklists |
list, get, create, update, delete | tasklists.md |
| TaxRate | taxrates |
list, get, create, update, delete | taxrates.md |
| Team | teams |
list, get, create, update, delete | teams.md |
| TemplateFile | templatefiles |
list, get, create, update, delete | templatefiles.md |
| TemplateVersion | templateversions |
list, get, create, update, delete | templateversions.md |
| Ticket | tickets |
list, get, create, update, delete | tickets.md |
| TimePass | timepasses |
list, get, create, update, delete | timepasses.md |
| TimePassPrice | timepassprices |
list, get, create, update, delete | timepassprices.md |
| TimePassTimeSlot | timepasstimeslots |
list, get, create, update, delete | timepasstimeslots.md |
| UiModule | uimodules |
list, get, create, update, delete | uimodules.md |
| User | users |
list, get, create, update, delete | users.md |
| UserBookmark | userbookmarks |
list, get, create, update, delete | userbookmarks.md |
| UserMessage | usermessages |
list, get | usermessages.md |
| UserRole | userroles |
list, get, create, update, delete | userroles.md |
| ValidationRule | validationrules |
list, get, create, update, delete | validationrules.md |
| VideoFile | videofiles |
list, get, create, update, delete | videofiles.md |
| VideoRoom | videorooms |
list, get, create, update, delete | videorooms.md |
| Visitor | visitors |
list, get, create, update, delete | visitors.md |
| WebHook | webhooks |
list, get, create, update, delete | webhooks.md |
| Workspace | workspaces |
list, get, create, update, delete | workspaces.md |
Image Uploads
Some entities have image properties (logo, banner, picture, etc.). To set an image, you must provide two properties:
New{PropertyName}Url— a publicly accessible URL where the Nexudus back-end can download the image. Local file paths or authenticated URLs will not work.{PropertyName}FileName— the file name (with extension) to store for the image. Use only non-special characters (letters, digits, hyphens, underscores) and include the file extension (e.g.,.png,.jpg).
If the user does not supply a file name, derive one from the URL (use the last path segment, stripping query strings and special characters) or generate a reasonable default like image.png. Always ensure the name contains only safe characters and a valid image extension.
| Entity | Image Property | CLI URL Option | API URL Property | CLI FileName Option | API FileName Property |
|---|---|---|---|---|---|
| Business | Logo | --logo-url |
NewLogoUrl |
--logo-file-name |
LogoFileName |
| Business | BannerImage | --banner-url |
NewBannerImageUrl |
--banner-file-name |
BannerImageFileName |
| Business | NexIoBannerImage | --nexio-banner-url |
NewNexIoBannerImageUrl |
--nexio-banner-file-name |
NexIoBannerImageFileName |
| Business | PassportBanner | --passport-banner-url |
NewPassportBannerUrl |
--passport-banner-file-name |
PassportBannerFileName |
| Resource | Picture | --new-picture-url |
NewPictureUrl |
--picture-file-name |
PictureFileName |
Example — set a logo on a business:
nexudus businesses update <id> --logo-url "https://example.com/logo.png" --logo-file-name "logo.png" --agent
Example — set a picture on a resource:
nexudus resources update <id> --new-picture-url "https://example.com/room.jpg" --picture-file-name "room.jpg" --agent
Example — user provides only the URL (agent derives the file name):
# User says: set the logo to https://cdn.example.com/images/my-logo.png
# Agent extracts "my-logo.png" from the URL path
nexudus businesses update <id> --logo-url "https://cdn.example.com/images/my-logo.png" --logo-file-name "my-logo.png" --agent
Example — URL has no usable file name (agent generates one):
# User says: set the logo to https://cdn.example.com/generate?id=abc
# Agent cannot extract a file name, so it generates a safe default
nexudus businesses update <id> --logo-url "https://cdn.example.com/generate?id=abc" --logo-file-name "logo.png" --agent
Nexudus API Pattern
The Nexudus API follows a consistent REST pattern. Each entity at /api/{module}/{entities} supports:
| Operation | HTTP | URL |
|---|---|---|
| Search | GET | /api/{module}/{entities}?page=1&size=25 |
| Get one | GET | /api/{module}/{entities}/{id} |
| Create | POST | /api/{module}/{entities} |
| Update | PUT | /api/{module}/{entities} |
| Delete | DELETE | /api/{module}/{entities}/{id} |
| Commands | GET | /api/{module}/{entities}/commands |
| Run command | POST | /api/{module}/{entities}/runCommand |
Passing Multiple Values (List Options)
Some options accept a list of IDs (e.g., --tariffs, --teams, --linked-resources, --resource-types). To pass multiple values, repeat the flag for each value:
nexudus resources update <id> --tariffs 101 --tariffs 202 --tariffs 303 --agent
Do not use comma-separated values or bracket syntax — each value needs its own flag.
Choosing between --{list}, --added-{list}, and --removed-{list}
Every list property comes in three variants. Use the right one for your intent:
| Variant | When to use | Effect |
|---|---|---|
--{list} |
Default choice. You know the full desired list. | Replaces the entire list with the supplied values. |
--added-{list} |
You want to append one or more items to the existing list without altering the rest. | Merges the supplied IDs into the existing list. |
--removed-{list} |
You want to remove one or more items from the existing list without altering the rest. | Removes the supplied IDs from the existing list. |
Use --{list} in almost all cases. The add/remove variants are only needed when you need surgical, incremental changes — for example, adding a single new tariff to a resource that already has several others you must not disturb.
Example — replace all tariffs on a resource:
nexudus resources update <id> --tariffs 101 --tariffs 202 --agent
Example — add one tariff without changing the existing ones:
nexudus resources update <id> --added-tariffs 303 --agent
Example — remove one tariff without changing the existing ones:
nexudus resources update <id> --removed-tariffs 101 --agent
Tips
- Use
--page-size 100to fetch larger pages when you need to scan many records. - Use
--id <id>to filter by a single ID, or repeat--id <id1> --id <id2>for multiple IDs. - Use
--unique-id <guid>to filter by UniqueId (GUID), repeatable for multiple. - Combine filter options with pagination for efficient searching.
- The
run-commandaccepts comma-separated IDs to batch operations:nexudus products run-command archive 123,456,789 --agent. - Business entities cannot be created or deleted via the API — only listed, viewed, and updated.
- Always pass
--yeswith delete commands whegin running non-interactively.