The user management endpoints underDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/calagopus/panel/llms.txt
Use this file to discover all available pages before exploring further.
/api/admin/users let administrators list, inspect, create, update, and delete panel accounts. All endpoints require a valid admin session or API key with the appropriate users.* permission.
Admin API endpoints are accessible at
/api/admin/users. Both session cookies and API keys are supported. An API key must include the relevant admin permission in its admin_permissions scope.List users
Returns a paginated list of all users.Page number.
Items per page (1–100).
Filter by username, email, or name.
users.read
- curl
- Response
Get a user
Returns a single user by UUID.The user’s UUID.
users.read
Create a user
Creates a new panel account.Username. 3–15 alphanumeric/underscore characters.
Email address. Must be unique.
First name. 2–255 characters.
Last name. 2–255 characters.
Initial password. If omitted, the user can set one via the password-reset flow.
Grant global admin rights.
UI language code.
Optional role to assign.
Optional external identifier for integration with third-party systems.
users.create
Returns 409 Conflict if the username or email is already taken.
- curl
- Response
Update a user
Updates one or more fields on an existing user. All body fields are optional.The user’s UUID.
New username.
New email address.
New first name.
New last name.
New password.
Grant or revoke global admin rights.
UI language code.
Assign or change role. Pass
null to remove the role.External identifier.
users.update
Returns 409 Conflict if the new email, username, or external_id is already used by another account.
Delete a user
Permanently deletes a user account.The user’s UUID.
users.delete
User object fields
Unique identifier (UUID v4).
Optional external identifier for third-party integrations.
Display username.
Email address.
First name.
Last name.
Whether the user has global administrator rights.
Whether two-factor authentication is active.
UI language code.
Assigned role object or
null.ISO 8601 creation timestamp.