User administration
Platform administrators can manage users across the entire deployment. These endpoints are restricted to platform admins and are intended for internal tooling (for example, an admin dashboard).
List users
Section titled “List users”GET /api/v1/admin/users
Returns a paginated list of users. Supports search and sorting.
Query parameters:
page(default: 1)page_size(default: 25, max: 100)search(optional) — matches email, username, first name, or last namesort_by(default:created_at) —created_at,email_address,usernamesort_dir(default:desc) —ascordesc
Get user details
Section titled “Get user details”GET /api/v1/admin/users/{user_id}
Returns user details along with organization memberships for the given user.
Delete a user
Section titled “Delete a user”DELETE /api/v1/admin/users/{user_id}
Deletes the specified user and returns 204 No Content on success.