Skip to main content

Typed access

Admin.UserGroup operations are reached via client.Api.Security.UserGroup on EksoClient.
await client.Api.Security.UserGroup.ListUserGroupAsync();
For the full set of methods and request/response types, your IDE’s auto-completion is the fastest discovery path. Each method below maps 1-to-1 to an HTTP route in the API Reference.

Operations

MethodRouteSummary
GET/api/security/user-groupLists all user groups for the current tenant, ordered by name.
GET/api/security/user-group/{id}Retrieves a single user group by its identifier.
POST/api/security/user-groupCreates a new custom user group (super admin only).
PUT/api/security/user-groupUpdates an existing user group (super admin only, system groups cannot be deleted via update).
DELETE/api/security/user-group/{id}Deletes a custom user group by its identifier (super admin only, system groups cannot be deleted).

See also