Users
Users in a workspace
View Specific Information
Select
The component uses the Bitbucket API to process WHERE clause conditions built with the following columns and operators.- UserEmail
Note that a user must have administrator permissions in order to filter the UserEmail. Additionally, due to API restrictions, the UserEmail will only be visible if it is filtered and the filter is positive. For example, WHERE UserEmail = 'v1' and WHERE UserEmail IN ('v1', 'v2') will show a value for UserEmail, but WHERE UserEmail != 'v1' and WHERE UserEmail NOT IN ('v1', 'v2') will not. The value will not be included if a filter is not supplied for the UserEmail, such as SELECT * FROM Users.
All other filters are processed client-side within the component.
All sorting must be processed client-side within the component.
Sample queries are included below:
SELECT * FROM Users where UserEmail = '[email protected]' SELECT * FROM Users WHERE UserEmail IN ('[email protected]', '[email protected]')
Columns
| Name | Type | References | Description |
| UUID [KEY] | String | The user's immutable id | |
| DisplayName | String | The user's name as is displayed | |
| AccountId | String | Account Id of the user | |
| Nickname | String | The user's nickname | |
| UserEmail | String | User's email address |