-
Notifications
You must be signed in to change notification settings - Fork 88
Users Group Membership
- API documentation
- Definitions
- Add users to groups
- Delete users from groups
- Delete external user from groups
- Update users group roles and delivery settings
- Synchronize users group membership
- Check users group membership
-
Display users group membership
- Display group names as an indented list
- Display group names in CSV format
- Display group details as an indented list
- Display group details in CSV format
- Display group counts as an indented list
- Display group counts in CSV format
- Display total group counts as an indented list
- Display total group counts in CSV format
- Display group addresses in CSV format
- Display groups and their parents
- Add a target user to the same groups as a source user
<DeliverySetting> ::=
allmail|
abridged|daily|
digest|
disabled|
none|nomail
<DomainName> ::= <String>(.<String>)+
<EmailAddress> ::= <String>@<DomainName>
<UniqueID> ::= id:<String>
<GroupItem> ::= <EmailAddress>|<UniqueID>|<String>
<GroupList> ::= "<GroupItem>(,<GroupItem>)*"
<GroupEntity> ::=
<GroupList> | <FileSelector> | <CSVkmdSelector> | <CSVDataSelector>
See: https://github.com/taers232c/GAMADV-XTD3/wiki/Collections-of-Items
<GroupRole> ::= owner|manager|member
<GroupRoleList> ::= "<GroupRole>(,<GroupRole>)*"
Add each user in <UserTypeEntity>
to all of the groups specified by ([<GroupRole>] <GroupEntity>)+
.
If <GroupRole>
is not specified, member
is assumed.
gam <UserTypeEntity> add group|groups
([<GroupRole>] [[delivery] <DeliverySetting>] <GroupEntity>)+
Add a user to several groups with different roles.
$ gam user [email protected] add groups owner [email protected] manager [email protected] member [email protected],[email protected]
User: [email protected], Add to 4 Groups
Group: [email protected], Owner: [email protected], Added (1/4)
Group: [email protected], Manager: [email protected], Added (2/4)
Group: [email protected], Member: [email protected], Added (3/4)
Group: [email protected], Member: [email protected], Added (4/4)
Use a CSV file to specify users, groups and roles.
# Desired state
$ more UserGroupRole.csv
User,Group,Role,Status,Delivery
[email protected],[email protected],OWNER,ACTIVE,DIGEST
[email protected],[email protected],MANAGER,ACTIVE,DAILY
[email protected],[email protected],MEMBER,ACTIVE,ALL_MAIL
[email protected],[email protected],MEMBER,ACTIVE,ALL_MAIL
[email protected],[email protected],MEMBER,ACTIVE,ALL_MAIL
[email protected],[email protected],MANAGER,ACTIVE,ALL_MAIL
[email protected],[email protected],MEMBER,ACTIVE,ALL_MAIL
[email protected],[email protected],OWNER,ACTIVE,NONE
# Current state
$ gam csvkmd users UserGroupRole.csv keyfield User print groups
User,Group,Role,Status,Delivery
# Add users to groups
$ gam redirect stdout - multiprocess csv UserGroupRole.csv gam user "~User" add group "~Role" "~Delivery" "~Group"
Using 5 processes...
User: [email protected], Add to 1 Group
Group: [email protected], Owner: [email protected], Added
User: [email protected], Add to 1 Group
Group: [email protected], Member: [email protected], Added
User: [email protected], Add to 1 Group
Group: [email protected], Member: [email protected], Added
User: [email protected], Add to 1 Group
Group: [email protected], Member: [email protected], Added
User: [email protected], Add to 1 Group
Group: [email protected], Manager: [email protected], Added
User: [email protected], Add to 1 Group
Group: [email protected], Member: [email protected], Added
User: [email protected], Add to 1 Group
Group: [email protected], Manager: [email protected], Added
User: [email protected], Add to 1 Group
Group: [email protected], Owner: [email protected], Added
# Final state
$ gam csvkmd users UserGroupRole.csv keyfield User print groups
User,Group,Role,Status,Delivery
[email protected],[email protected],OWNER,ACTIVE,DIGEST
[email protected],[email protected],MANAGER,ACTIVE,DAILY
[email protected],[email protected],MEMBER,ACTIVE,ALL_MAIL
[email protected],[email protected],MEMBER,ACTIVE,ALL_MAIL
[email protected],[email protected],MEMBER,ACTIVE,ALL_MAIL
[email protected],[email protected],MANAGER,ACTIVE,ALL_MAIL
[email protected],[email protected],MEMBER,ACTIVE,ALL_MAIL
[email protected],[email protected],OWNER,ACTIVE,NONE
gam <UserTypeEntity> delete group|groups
[(domain <DomainName>)|(customerid <CustomerID>)|
(emailmatchpattern [not] <RegularExpression>)|<GroupEntity>]
By default, users will be deleted from all groups of which they are a member, these options allow selection of subsets of groups:
-
domain <DomainName>
- Delete from all groups in the domain<DomainName>
of which they are a member -
customerid <CustomerID>
- For resellers, delete from all groups in a resold workspace of which they are a member -
emailmatchpattern [not] <RegularExpression>
- Delete from all groups of which they are a member based on (not) matching the group email address -
<GroupEntity>
- Delete from a specific list of groups
Delete a user from all groups to which it belongs.
$ gam user [email protected] delete groups
User: [email protected], Delete from 4 Groups
Group: [email protected], Member: [email protected], Deleted (1/4)
Group: [email protected], Member: [email protected], Deleted (2/4)
Group: [email protected], Member: [email protected], Deleted (3/4)
Group: [email protected], Member: [email protected], Deleted (4/4)
Delete users from all groups to which they belong. Assume a CSV file NoGroupsUsers.csv with a column labelled primaryEmail that lists the users.
gam csv NoGroupsUsers.csv gam user "~primaryEmail" delete groups
Use a CSV file to specify users and groups.
# Current state
$ gam csvkmd users UserGroupRole.csv keyfield User print groups
User,Group,Role,Status,Delivery
[email protected],[email protected],OWNER,ACTIVE,DIGEST
[email protected],[email protected],MANAGER,ACTIVE,DAILY
[email protected],[email protected],MEMBER,ACTIVE,ALL_MAIL
[email protected],[email protected],MEMBER,ACTIVE,ALL_MAIL
[email protected],[email protected],MEMBER,ACTIVE,ALL_MAIL
[email protected],[email protected],MANAGER,ACTIVE,ALL_MAIL
[email protected],[email protected],MEMBER,ACTIVE,ALL_MAIL
[email protected],[email protected],OWNER,ACTIVE,NONE
# Delete users from groups
$ gam csvkmd users UserGroupRole.csv keyfield User delete groups
User: [email protected], Delete from 4 Groups (1/3)
Group: [email protected], Member: [email protected], Deleted (1/4)
Group: [email protected], Member: [email protected], Deleted (2/4)
Group: [email protected], Member: [email protected], Deleted (3/4)
Group: [email protected], Member: [email protected], Deleted (4/4)
User: [email protected], Delete from 2 Groups (2/3)
Group: [email protected], Member: [email protected], Deleted (1/2)
Group: [email protected], Member: [email protected], Deleted (2/2)
User: [email protected], Delete from 2 Groups (3/3)
Group: [email protected], Member: [email protected], Deleted (1/2)
Group: [email protected], Member: [email protected], Deleted (2/2)
# Final state
$ gam csvkmd users UserGroupRole.csv keyfield User print groups
User,Group,Role,Status,Delivery
There is a user from outside of your domain that you would like to delete from all groups.
$ gam user [email protected] delete groups
User: [email protected], Delete from 0 Groups
There is a Goggle issue that causes this to fail for a few external addresses. To solve this problem, you need the unique ID for the external address; the following steps show how to do this.
Create a test group.
$ gam create group testexternal description "Test External Email Addresses"
Group: [email protected], Created
Add the external address to that group.
$ gam update group testexternal add member [email protected]
Group: [email protected], Add 1 Member
Group: [email protected], Member: [email protected], Added: Role: MEMBER
Print the group members of the group to get the unique ID of the external address.
$ gam print group-members group testexternal
Getting all Members, Managers, Owners for [email protected]
group,type,role,id,status,email
[email protected],USER,MEMBER,123406166545652215678,,[email protected]
Delete the external address from all groups.
$ gam user uid:123406166545652215678 delete groups
User: 123406166545652215678, Delete from 2 Groups
Group: [email protected], Member: 123406166545652215678, Deleted (1/2)
Group: [email protected], Member: 123406166545652215678, Deleted (2/2)
For each user in <UserTypeEntity>
update their current group role and delivery settings.
gam <UserTypeEntity> update group|groups
[(domain <DomainName>)|(customerid <CustomerID>)]) [<GroupRole>] [[delivery] <DeliverySetting>]
([<GroupRole>] [[delivery] <DeliverySetting>] [<GroupEntity>])*
By default, update user roles and delivery settings for all groups of which they are a member, these options allow selection of subsets of groups:
-
domain <DomainName>
- Update user role and delivery settings for all groups in the domain<DomainName>
of which they are a member -
customerid <CustomerID>
- For resellers, update user role and delivery settings for all groups in a resold workspace of which they are a member -
<GroupEntity>
- Update user role and delivery settings for a specific list of groups; you can specify different roles and delivery settings for different group lists
# Current state
$ gam csvkmd users UserGroupRole.csv keyfield User print groups
User,Group,Role,Status,Delivery
[email protected],[email protected],OWNER,ACTIVE,DIGEST
[email protected],[email protected],MANAGER,ACTIVE,DAILY
[email protected],[email protected],MEMBER,ACTIVE,ALL_MAIL
[email protected],[email protected],MEMBER,ACTIVE,ALL_MAIL
[email protected],[email protected],MEMBER,ACTIVE,ALL_MAIL
[email protected],[email protected],MANAGER,ACTIVE,ALL_MAIL
[email protected],[email protected],MEMBER,ACTIVE,ALL_MAIL
[email protected],[email protected],OWNER,ACTIVE,NONE
# Desired changes
$ more UserGroupRoleNew.csv
User,Group,Role,Status,Delivery
[email protected],[email protected],OWNER,ACTIVE,DIGEST
[email protected],[email protected],MANAGER,ACTIVE,DAILY
[email protected],[email protected],OWNER,ACTIVE,DIGEST
# Update roles/delivery settings
$ gam redirect stdout - multiprocess csv UserGroupRoleNew.csv gam user "~User" update group "~Role" "~Delivery" "~Group"
Using 3 processes...
User: [email protected], Update to 1 Group
Group: [email protected], Manager: [email protected], Updated
User: [email protected], Update to 1 Group
Group: [email protected], Owner: [email protected], Updated
User: [email protected], Update to 1 Group
Group: [email protected], Owner: [email protected], Updated
# Final state
$ gam csvkmd users UserGroupRole.csv keyfield User print groups
User,Group,Role,Status,Delivery
[email protected],[email protected],OWNER,ACTIVE,DIGEST
[email protected],[email protected],OWNER,ACTIVE,DIGEST
[email protected],[email protected],MEMBER,ACTIVE,ALL_MAIL
[email protected],[email protected],MEMBER,ACTIVE,ALL_MAIL
[email protected],[email protected],MEMBER,ACTIVE,ALL_MAIL
[email protected],[email protected],MANAGER,ACTIVE,DAILY
[email protected],[email protected],MEMBER,ACTIVE,ALL_MAIL
[email protected],[email protected],OWNER,ACTIVE,DIGEST
For each user in <UserTypeEntity>
get their current group membership and do adds and deletes as necessary to match ([<GroupRole>] <GroupEntity>)+
.
If <GroupRole>
is not specified, member
is assumed.
gam <UserTypeEntity> sync group|groups
[(domain <DomainName>)|(customerid <CustomerID>)]
[<GroupRole>] [[delivery] <DeliverySetting>] <GroupEntity>)*
By default, users will be synchronized with all groups of which they are a member, these options allow selection of subsets of groups:
-
domain <DomainName>
- Synchronize with all groups in the domain<DomainName>
of which they are a member -
customerid <CustomerID>
- For resellers, synchronize with all groups in a resold workspace of which they are a member
# Current state
$ gam user [email protected] print groups
User,Group,Role
[email protected],[email protected],MEMBER,ACTIVE,ALL_MAIL
[email protected],[email protected],MEMBER,ACTIVE,ALL_MAIL
[email protected],[email protected],MEMBER,ACTIVE,ALL_MAIL
[email protected],[email protected],MEMBER,ACTIVE,ALL_MAIL
# Update membership
$ gam user [email protected] sync groups owner [email protected] manager [email protected] member [email protected],[email protected]
User: [email protected], Remove from 1 Group
Group: [email protected], Member: [email protected], Removed
User: [email protected], Add to 1 Group
Group: [email protected], Owner: [email protected], Added
User: [email protected], Update in 1 Group
Group: [email protected], Manager: [email protected], Updated
# Final state
$ gam user [email protected] print groups
User,Group,Role
[email protected],[email protected],OWNER,ACTIVE,ALL_MAIL
[email protected],[email protected],MANAGER,ACTIVE,ALL_MAIL
[email protected],[email protected],MEMBER,ACTIVE,ALL_MAIL
[email protected],[email protected],MEMBER,ACTIVE,ALL_MAIL
# Current state
$ gam csvkmd users UserGroupRole.csv keyfield User print groups
User,Group,Role,Status,Delivery
[email protected],[email protected],OWNER,ACTIVE,ALL_MAIL
[email protected],[email protected],MANAGER,ACTIVE,ALL_MAIL
[email protected],[email protected],MEMBER,ACTIVE,ALL_MAIL
[email protected],[email protected],MEMBER,ACTIVE,ALL_MAIL
[email protected],[email protected],MEMBER,ACTIVE,ALL_MAIL
[email protected],[email protected],MEMBER,ACTIVE,ALL_MAIL
[email protected],[email protected],MEMBER,ACTIVE,ALL_MAIL
[email protected],[email protected],MEMBER,ACTIVE,ALL_MAIL
# Desired state
$ more UserGroupRole.csv
User,Group,Role,Status,Delivery
[email protected],[email protected],OWNER,ACTIVE,DIGEST
[email protected],[email protected],MANAGER,ACTIVE,DAILY
[email protected],[email protected],MEMBER,ACTIVE,ALL_MAIL
[email protected],[email protected],MEMBER,ACTIVE,ALL_MAIL
[email protected],[email protected],MEMBER,ACTIVE,ALL_MAIL
[email protected],[email protected],MANAGER,ACTIVE,ALL_MAIL
[email protected],[email protected],MEMBER,ACTIVE,ALL_MAIL
[email protected],[email protected],OWNER,ACTIVE,NONE
# Update membership
$ gam csvkmd users UserGroupRole.csv keyfield User subkeyfield Role datafield Group sync groups csvdata Group
User: [email protected], Remove from 1 Group (1/3)
Group: [email protected], Member: [email protected], Removed
User: [email protected], Update to 1 Group (2/3)
Group: [email protected], Manager: [email protected], Updated
User: [email protected], Add to 1 Group (3/3)
Group: [email protected], Owner: [email protected], Added
# Intermediate state
$ gam csvkmd users UserGroupRole.csv keyfield User print groups
User,Group,Role,Status,Delivery
[email protected],[email protected],OWNER,ACTIVE,ALL_MAIL
[email protected],[email protected],MANAGER,ACTIVE,ALL_MAIL
[email protected],[email protected],MEMBER,ACTIVE,ALL_MAIL
[email protected],[email protected],MEMBER,ACTIVE,ALL_MAIL
[email protected],[email protected],MEMBER,ACTIVE,ALL_MAIL
[email protected],[email protected],MANAGER,ACTIVE,ALL_MAIL
[email protected],[email protected],MEMBER,ACTIVE,ALL_MAIL
[email protected],[email protected],OWNER,ACTIVE,ALL_MAIL
# Update roles/delivery settings
$ gam redirect stdout - multiprocess csv UserGroupRole.csv gam user "~User" update group "~Role" "~Delivery" "~Group"
Using 5 processes...
User: [email protected], Update to 1 Group
Group: [email protected], Member: [email protected], Updated
User: [email protected], Update to 1 Group
Group: [email protected], Member: [email protected], Updated
User: [email protected], Update to 1 Group
Group: [email protected], Member: [email protected], Updated
User: [email protected], Update to 1 Group
Group: [email protected], Manager: [email protected], Updated
User: [email protected], Update to 1 Group
Group: [email protected], Owner: [email protected], Updated
User: [email protected], Update to 1 Group
Group: [email protected], Member: [email protected], Updated
User: [email protected], Update to 1 Group
Group: [email protected], Manager: [email protected], Updated
User: [email protected], Update to 1 Group
Group: [email protected], Owner: [email protected], Updated
# Final state
$ gam csvkmd users UserGroupRole.csv keyfield User print groups
User,Group,Role,Status,Delivery
[email protected],[email protected],OWNER,ACTIVE,DIGEST
[email protected],[email protected],MANAGER,ACTIVE,DAILY
[email protected],[email protected],MEMBER,ACTIVE,ALL_MAIL
[email protected],[email protected],MEMBER,ACTIVE,ALL_MAIL
[email protected],[email protected],MEMBER,ACTIVE,ALL_MAIL
[email protected],[email protected],MANAGER,ACTIVE,ALL_MAIL
[email protected],[email protected],MEMBER,ACTIVE,ALL_MAIL
[email protected],[email protected],OWNER,ACTIVE,NONE
For each user in <UserTypeEntity>
check if they are members of the groups in <GroupEntity>
with a role
in role <GroupsRoleList>
; if not specified, any role is acceptable.
gam <UserTypeEntity> check group|groups
[roles <GroupRoleList>] [includederivedmembership] [csv] <GroupEntity>
By default, only direct membership is checked; include the includederivedmembership
to check
if a user is a member of a group or one of its sub-groups.
By default, the output is indented keys and values written to stdout;
use the csv
option to write the output to a CSV file.
A return code of 0 indicates that a user is a member of all of the groups with an acceptable role; a return code of 29 indicates that the user is not a member of all of the groups.
It takes one API call to get the list of groups to which a user belongs.
There is one row per group to which a user belongs.
gam <UserTypeEntity> show groups
[(domain <DomainName>)|(customerid <CustomerID>)]
[roles <GroupRoleList>] nodetails
There is one row per user/group combination.
gam <UserTypeEntity> print groups [todrive <ToDriveAttribute>*]
[(domain <DomainName>)|(customerid <CustomerID>)]
[roles <GroupRoleList>] nodetails
By default, all groups to which a member belongs are displayed, these options allow selection of subsets of groups:
-
domain <DomainName>
- Limit display to groups in the domain<DomainName>
of which they are a member -
customerid <CustomerID>
- For resellers, display all groups in a resold workspace of which they are a member -
roles <GroupRoleList>
- Limit display to those groups for which the user has a specific role
There is one row per group to which a user belongs showing role, status and delivery information.
There is one API call per user/group to get the user's role and delivery settings.
gam <UserTypeEntity> show groups
[(domain <DomainName>)|(customerid <CustomerID>)]
[roles <GroupRoleList>]
There is one row per user/group combination displaying role, status and delivery information.
There is one API call per user/group to get the user's role and delivery settings.
gam <UserTypeEntity> print groups [todrive <ToDriveAttribute>*]
[(domain <DomainName>)|(customerid <CustomerID>)]
[roles <GroupRoleList>]
By default, all groups to which a member belongs are displayed, these options allow selection of subsets of groups:
-
domain <DomainName>
- Limit display to groups in the domain<DomainName>
of which they are a member -
customerid <CustomerID>
- For resellers, display all groups in a resold workspace of which they are a member -
roles <GroupRoleList>
- Limit display to those groups for which the user has a specific role
There is one row per user displaying the number of groups, by role, to which a user belongs.
There is one API call per user/group to get the user's role.
gam <UserTypeEntity> show groups
[(domain <DomainName>)|(customerid <CustomerID>)]
[roles <GroupRoleList>] countsonly
By default, all groups to which a member belongs are displayed, these options allow selection of subsets of groups:
-
domain <DomainName>
- Limit display to groups in the domain<DomainName>
of which they are a member -
customerid <CustomerID>
- For resellers, display all groups in a resold workspace of which they are a member -
roles <GroupRoleList>
- Limit display to those groups for which the user has a specific role
There is one row per user displaying the number of groups, by role, to which a user belongs.
There is one API call per user/group to get the user's role.
gam <UserTypeEntity> print groups [todrive <ToDriveAttribute>*]
[(domain <DomainName>)|(customerid <CustomerID>)]
[roles <GroupRoleList>] countsonly
By default, all groups to which a member belongs are displayed, these options allow selection of subsets of groups:
-
domain <DomainName>
- Limit display to groups in the domain<DomainName>
of which they are a member -
customerid <CustomerID>
- For resellers, display all groups in a resold workspace of which they are a member -
roles <GroupRoleList>
- Limit display to those groups for which the user has a specific role
There is one row per user displaying the number of groups to which a user belongs.
There is one API call per user to get the total group count.
gam <UserTypeEntity> show groups
[(domain <DomainName>)|(customerid <CustomerID>)]
totalonly
By default, all groups to which a member belongs are displayed, these options allow selection of subsets of groups:
-
domain <DomainName>
- Limit display to groups in the domain<DomainName>
of which they are a member -
customerid <CustomerID>
- For resellers, display all groups in a resold workspace of which they are a member
There is one row per user displaying the total number of groups to which a user belongs.
There is one API call per user to get the total group count.
gam <UserTypeEntity> print groups [todrive <ToDriveAttribute>*]
[(domain <DomainName>)|(customerid <CustomerID>)]
totalonly
By default, all groups to which a member belongs are displayed, these options allow selection of subsets of groups:
-
domain <DomainName>
- Limit display to groups in the domain<DomainName>
of which they are a member -
customerid <CustomerID>
- For resellers, display all groups in a resold workspace of which they are a member
There is one row per user showing the number and list of groups to which a user directly belongs.
gam <UserTypeEntity> print groupslist [todrive <ToDriveAttribute>*]
[(domain <DomainName>)|(customerid <CustomerID>)]
[delimiter <Character>] [quotechar <Character>]
By default, all groups to which a member belongs are displayed, these options allow selection of subsets of groups:
-
domain <DomainName>
- Limit display to groups in the domain<DomainName>
of which they are a member -
customerid <CustomerID>
- For resellers, display all groups in a resold workspace of which they are a member
By default, the entries in lists of groups are separated by the csv_output_field_delimiter' from
gam.cfg`.
-
delimiter <Character>
- Separate list items with<Character>
By default, when writing CSV files, Gam uses a quote character of double quote "
. The quote character is used to enclose columns that contain
the quote character itself, the column delimiter (comma by default) and new-line characters. Any quote characters within the column are doubled.
The quotechar <Character>
option allows you to choose an alternate quote character, single quote for instance, that makes for readable/processable output.
quotechar
defaults to gam.cfg/csv_output_quote_char
. When uploading CSV files to Google, double quote "
should be used.
$ gam user [email protected] show groups
User: [email protected], Show 4 Groups
Group: [email protected], Role: OWNER, Status: ACTIVE, Delivery: DIGEST (1/4)
Group: [email protected], Role: MANAGER, Status: ACTIVE, Delivery: DAILY (2/4)
Group: [email protected], Role: MEMBER, Status: ACTIVE, Delivery: ALL_MAIL (3/4)
Group: [email protected], Role: MEMBER, Status: ACTIVE, Delivery: ALL_MAIL (4/4)
$ gam user [email protected] print groups
User,Group,Role,Status,Delivery
[email protected],[email protected],OWNER,ACTIVE,DIGEST
[email protected],[email protected],MANAGER,ACTIVE,DAILY
[email protected],[email protected],MEMBER,ACTIVE,ALL_MAIL
[email protected],[email protected],MEMBER,ACTIVE,ALL_MAIL
$ gam csvkmd users UserGroupRole.csv keyfield User show groups role owner
User: [email protected], Show maximum of 4 Groups (1/3)
Group: [email protected], Role: OWNER, Status: ACTIVE, Delivery: DIGEST (1/4)
User: [email protected], Show maximum of 2 Groups (2/3)
User: [email protected], Show maximum of 2 Groups (3/3)
Group: [email protected], Role: OWNER, Status: ACTIVE, Delivery: NONE (2/2)
$ gam csvkmd users UserGroupRole.csv keyfield User print groups role owner
User,Group,Role,Status,Delivery
[email protected],[email protected],OWNER,ACTIVE,DIGEST
[email protected],[email protected],OWNER,ACTIVE,NONE
$ gam users testuser1,testuser2 show groups domain domain.net
User: [email protected], Show maximum of 2 Groups (1/2)
Group: [email protected], Role: MEMBER (1/2)
Group: [email protected], Role: MEMBER (2/2)
User: [email protected], Show maximum of 0 Groups (2/2)
$ gam users testuser1,testuser2 print groups domain domain.net
User,Group,Role
[email protected],[email protected],MEMBER
[email protected],[email protected],MEMBER
$ gam users testuser1,testuser2 print groupslist
Getting all Groups for [email protected] (1/2)
Getting all Groups for [email protected] (2/2)
User,Groups,GroupsList
[email protected],6,[email protected] [email protected] [email protected] [email protected] [email protected] [email protected]
[email protected],0,
$ gam config csv_output_row_filter "Groups:count=0" users testuser1,testuser2 print groupslist
Getting all Groups for [email protected] (1/2)
Getting all Groups for [email protected] (2/2)
User,Groups,GroupsList
[email protected],0,
Display a user's groups and their parents as an indented list.
gam <UserTypeEntity> show grouptree
[(domain <DomainName>)|(customerid <CustomerID>)]
[roles <GroupRoleList>]
By default, all groups to which a member belongs are displayed, these options allow selection of subsets of groups:
-
domain <DomainName>
- Limit display to groups in the domain<DomainName>
of which they are a member -
customerid <CustomerID>
- For resellers, display all groups in a resold workspace of which they are a member
By default, all of a users's groups are displayed without role information. Displaying role information requires an additional API call per user/group combination.
-
roles <GroupRoleList>
- Display groups with role information where the user has one of the specified roles
Display a user's groups and their parents in CSV format.
gam <UserTypeEntity> print grouptree [todrive <ToDriveAttribute>*]
[(domain <DomainName>)|(customerid <CustomerID>)]
[roles <GroupRoleList>]
[showparentsaslist [<Boolean>]] [delimiter <Character>]
By default, all groups to which a member belongs are displayed, these options allow selection of subsets of groups:
-
domain <DomainName>
- Limit display to groups in the domain<DomainName>
of which they are a member -
customerid <CustomerID>
- For resellers, display all groups in a resold workspace of which they are a member
By default, all of a users's groups are displayed without role information. Displaying role information requires an additional API call per user/group combination.
-
roles <GroupRoleList>
- Display groups with role information where the user has one of the specified roles
By default, the group parent emails and names are displayed in multiple indexed columns.
Use options showparentsaslist [<Boolean>]
and delimiter <Character>
to display
the group parent emails and names in two columns as delimited lists .
$ gam user [email protected] show grouptree
User: [email protected], Show maximum of 4 Group Trees
[email protected]: Test Group1 (1/4)
[email protected]: Test Group Org
[email protected]: Test - Group 2 (2/4)
[email protected]: Test Group1
[email protected]: Test Group Org
[email protected]: Test Group Net
[email protected]: Test - Group 3 (3/4)
[email protected]: Test Group Org (4/4)
$ gam user [email protected] show grouptree roles member,manager,owner
User: [email protected], Show 4 Group Trees
[email protected]: Test Group1, Role: MEMBER (1/4)
[email protected]: Test Group Org
[email protected]: Test - Group 2, Role: MEMBER (2/4)
[email protected]: Test Group1
[email protected]: Test Group Org
[email protected]: Test Group Net
[email protected]: Test - Group 3, Role: MANAGER (3/4)
[email protected]: Test Group Org, Role: MEMBER (4/4)
$ gam user [email protected] show grouptree roles manager
User: [email protected], Show maximum of 4 Group Trees
[email protected]: Test - Group 3, Role: MANAGER (3/4)
$ gam user [email protected] print grouptree
User,Group,Name,parents,parents.0.email,parents.0.name,parents.1.email,parents.1.name
[email protected],[email protected],Test Group1,1,[email protected],Test Group Org,,
[email protected],[email protected],Test - Group 2,2,[email protected],Test Group1,[email protected],Test Group Org
[email protected],[email protected],Test - Group 2,1,[email protected],Test Group Net,,
[email protected],[email protected],Test - Group 3,0,,,,
[email protected],[email protected],Test Group Org,0,,,,
$ gam user [email protected] print grouptree showparentsaslist delimiter "|"
User,Group,Name,ParentsCount,Parents,ParentsName
[email protected],[email protected],Test Group1,1,[email protected],Test Group Org
[email protected],[email protected],Test - Group 2,2,[email protected]|[email protected],Test Group1|Test Group Org
[email protected],[email protected],Test - Group 2,1,[email protected],Test Group Net
[email protected],[email protected],Test - Group 3,0,,
[email protected],[email protected],Test Group Org,0,,
$ gam user [email protected] print grouptree roles member,manager,owner
User,Group,Name,Role,parents,parents.0.email,parents.0.name,parents.1.email,parents.1.name
[email protected],[email protected],Test Group1,MEMBER,1,[email protected],Test Group Org,,
[email protected],[email protected],Test - Group 2,MEMBER,2,[email protected],Test Group1,[email protected],Test Group Org
[email protected],[email protected],Test - Group 2,MEMBER,1,[email protected],Test Group Net,,
[email protected],[email protected],Test - Group 3,MANAGER,0,,,,
[email protected],[email protected],Test Group Org,MEMBER,0,,,,
$ gam user [email protected] print grouptree roles member,manager,owner showparentsaslist delimiter "|"
User,Group,Name,Role,ParentsCount,Parents,ParentsName
[email protected],[email protected],Test Group1,MEMBER,1,[email protected],Test Group Org
[email protected],[email protected],Test - Group 2,MEMBER,2,[email protected]|[email protected],Test Group1|Test Group Org
[email protected],[email protected],Test - Group 2,MEMBER,1,[email protected],Test Group Net
[email protected],[email protected],Test - Group 3,MANAGER,0,,
[email protected],[email protected],Test Group Org,MEMBER,0,,
$ gam user [email protected] print grouptree roles manager
User,Group,Name,Role,parents
[email protected],[email protected],Test - Group 3,MANAGER,0
$ gam config csv_output_header_drop_filter "name,parents.*name" user [email protected] print grouptree
User,Group,parents,parents.0.email,parents.1.email
[email protected],[email protected],1,[email protected],
[email protected],[email protected],2,[email protected],[email protected]
[email protected],[email protected],1,[email protected],
[email protected],[email protected],0,,
[email protected],[email protected],0,,
Get the source user group information.
gam redirect csv ./SourceGroups.csv user [email protected] print groups
Add the target user to the these groups with the same role and delivery settings.
gam csv ./SourceGroups.csv gam user [email protected] add group "~Role" delivery "~Delivery" "~Group"
Need more help? Ask on the GAM Discussion Group
Update History
Installation
- How to Install GAM7
- How to Uograde GAMADV-XTD3 to GAM7
- How to Upgrade Legacy GAM to GAM7
- How to Update GAM7
- Install GAM as Python Library
- GAM7 on Chrome OS Devices
- GAM7 on Android Devices
- Google Network Addresses
- HTTPS Proxy
- SSL Root CA Certificates
- How to Uninstall GAM7
Configuration
- Authorization
- GAM Configuration
- Running GAM7 securely on a Google Compute Engine
- Using GAM7 with a delegated admin service account
- Using GAM7 with a YubiKey
Notes and Information
- Upgrade Benefits
- Questions? Visit the GAM Discussion Forum
- GAM Public Chat Room
- Scripts
- Other Resources
- Drive REST API v3
- BNF Syntax
- GAM Return Codes
- Python Regular Expressions
- Rclone
Definitions
Command Processing
- Bulk Processing
- Command Line Parsing
- Command Logging and Progress
- Command data from Google Docs/Sheets/Storage
- CSV Special Characters
- CSV Input Filtering
- CSV Output Filtering
- Meta Commands and File Redirection
- Permission matches
- Tag Replace
- Todrive
Collections
Client Access
- Addresses
- Administrators
- Alert Center
- Aliases
- Calendars
- Calendars - Access
- Calendars - Events
- Chrome Auto Update Expiration Counts
- Chrome Browser Cloud Management
- Chrome Device Needs Attention Counts
- Chrome Installed Apps
- Chrome Policies
- Chrome Printers
- Chrome Profile Management
- Chrome Version Counts
- Chrome Version History
- ChromeOS Devices
- Classroom - Courses
- Classroom - Guardians
- Classroom - Invitations
- Classroom - Membership
- Cloud Channel
- Cloud Identity Devices
- Cloud Identity Groups
- Cloud Identity Groups - Membership
- Cloud Identity Policies
- Cloud Storage
- Context Aware Access Levels
- Customer
- Domains
- Domains - Verification
- Domain People - Contacts & Profiles
- Domain Shared Contacts - Global Address List
- Email Audit Monitor
- Find File Owner
- Google Data Transfers
- Groups
- Groups - Membership
- Inbound SSO
- Licenses
- Mobile Devices
- Organizational Units
- Reports
- Reseller
- Resources
- Send Email
- Schemas
- Shared Drives
- Sites
- Users
- Unmanaged Accounts
- Users - Signout and Turn off 2-Step Verification
- Vault - Takeout
- Version and Help
Special Service Account Access
Service Account Access
- Users - Analytics Admin
- Users - Application Specific Passwords
- Users - Backup Verification Codes
- Users - Calendars
- Users - Calendars - Access
- Users - Calendars - Events
- Users - Chat
- Users - Classification Labels
- Users - Classroom - Profile
- Users - Deprovision
- Users - Contacts
- Users - Contacts - Delegates
- Users - Drive - File Selection
- Users - Drive - Activity/Settings
- Users - Drive - Cleanup
- Users - Drive - Comments
- Users - Drive - Copy/Move
- Users - Drive - Files-Display
- Users - Drive - Files-Manage
- Users - Drive - Orphans
- Users - Drive - Ownership
- Users - Drive - Permissions
- Users - Drive - Query
- Users - Drive - Revisions
- Users - Drive - Shortcuts
- Users - Drive - Transfer
- Users - Forms
- Users - Gmail - Client Side Encryption
- Users - Gmail - Delegates
- Users - Gmail - Filters
- Users - Gmail - Forwarding
- Users - Gmail - Labels
- Users - Gmail - Messages/Threads
- Users - Gmail - Profile
- Users - Gmail - S/MIME
- Users - Gmail - SendAs/Signature/Vacation
- Users - Gmail - Settings
- Users - Group Membership
- Users - Keep
- Users - Looker Studio
- Users - Meet
- Users - Classroom - Profile
- Users - People - Contacts & Profiles
- Users - Photo
- Users - Profile Sharing
- Users - Shared Drives
- Users - Spreadsheets
- Users - Tasks
- Users - Tokens
- Users - YouTube