LIST USERS
Syntax
[ LIST | SHOW ] USERS;
Description
This command provides a list of Users that are part of the current Organization.
Users are listed only if the current Role has USAGE
privileges on the organization.
Examples
List current user without an organization
<no-organization># LIST USERS;
+-------------+--------------+-------------+------------------------------------------+------------+
| Given Name | Family Name | Is Current | Email | Locale |
+=============+==============+=============+==========================================+============+
| user1 | fam1 | true | [email protected] | en |
+-------------+--------------+-------------+------------------------------------------+------------+
List users in an organization
<no-organization># USE ORGANIZATION my_org;
+--------------+---------+----------+------------------------------+
| Type | Name | Command | Summary |
+==============+=========+==========+==============================+
| organization | my_org | USE | using organization "my_org" |
+--------------+---------+----------+------------------------------+
<no-db>/<no-store># LIST USERS;
+-------------+--------------+-------------+------------------------------------------+------------+
| Given Name | Family Name | Is Current | Email | Locale |
+=============+==============+=============+==========================================+============+
| user1 | fam1 | true | [email protected] | en |
+-------------+--------------+-------------+------------------------------------------+------------+
| user2 | fam2 | false | [email protected] | en |
+-------------+--------------+-------------+------------------------------------------+------------+
Last updated