Skip to main content

Typed access

Admin.User operations are reached via client.Api.User on EksoClient.
await client.Api.User.ListAsync();
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/userLists all users for the current tenant.
GET/api/user/{id}Retrieves a single user by their identifier (non-admins can only retrieve their own record).
POST/api/userCreates a new user (super admin only).
PUT/api/userUpdates an existing user (non-admins can only update their own record).
DELETE/api/user/{id}Deletes a user by their identifier (super admin only).

See also