User account management and self-service profile operations.
/meGet current user profile
Returns the profile and organization membership details of the currently authenticated user.
Responses
Responses
The information about the current identity is returned.
/meUpdate my profile
Modifies the authenticated user's profile information such as their display name or preferences.
Request Body
Responses
Responses
The user profile was updated successfully.
/me/emailsList my email addresses
Returns all email addresses associated with the authenticated user's account, including their verification status.
Parameters
limitinteger
The maximum number of items to list.
"int32"0100100markerstring
The pagination token returned from the previous list operation.
Responses
Responses
The email addresses of the current identity are returned.
/me/emailsAdd an email address
Adds a new email address to the current user's account and sends a verification email.
Request Body
Responses
Responses
The email address was added and a verification email has been sent.
/me/loginsList my logins
Returns all active (non-expired) logins for the currently authenticated user, including device, IP address, and user agent information.
Responses
Responses
The logins of the current user are returned.
/me/logins/{loginId}Revoke a login
Revokes a specific active login for the currently authenticated user. This immediately invalidates the login's access token.
Responses
Responses
The requested operation was done successfully.
/me/trusted-devicesList my trusted devices
Returns all active (non-expired) trusted devices for the currently authenticated user. Trusted devices bypass two-factor authentication challenges.
Responses
Responses
The trusted devices of the current user are returned.
/me/trusted-devices/{trustedDeviceId}Revoke a trusted device
Revokes a specific trusted device for the currently authenticated user. Future logins from this device will require two-factor authentication.
Responses
Responses
The requested operation was done successfully.
/me/teamsList my teams
Returns all teams that the authenticated user is a member of, including their role within each team.
Responses
Responses
The teams of the current identity are returned.
/org/usersList users
Returns a paginated list of all user accounts in the organization.
Parameters
limitinteger
The maximum number of items to list.
"int32"0100100markerstring
The pagination token returned from the previous list operation.
Responses
Responses
A list of users is returned.
/org/usersCreate a user
Creates a new user account in the platform with the specified profile information and credentials.
Request Body
Responses
Responses
The user was created successfully.
/org/users/{user}Describe a user
Returns the full details of a user account, including their profile information and account status.
Responses
Responses
The information about the user is returned.
/org/users/{user}Delete a user
Permanently removes a user account and revokes all their active sessions, organization memberships, and team assignments.
Responses
Responses
The requested operation was done successfully.
/org/users/{user}Update a user
Modifies a user account's profile information or account settings.
Request Body
Responses
Responses
The user was updated successfully.
/org/users/{user}/mfaReset user MFA
Deletes all MFA configurations (TOTP and recovery codes) for the specified user
and revokes all their active sessions. The user will be required to re-authenticate
and set up MFA again.
Responses
Responses
The requested operation was done successfully.
/org/users/{user}/passwordChange user password
The current password must be provided in the request body.
For organization administrators, to reset password for a user without their current password, use the ResetPassword operation instead.
Request Body
Responses
Responses
The requested operation was done successfully.
/org/users/{user}/password/resetReset user password
Admin operation that generates a new temporary password for a user. To change the current user's own password, use ChangePassword instead.
Responses
Responses
The password was reset successfully.