mirror of
https://github.com/GAM-team/GAM.git
synced 2026-06-18 13:11:37 +00:00
Some checks failed
Build and test GAM / build (Win64, build, 7, VC-WIN64A, windows-2022) (push) Has been cancelled
Build and test GAM / build (aarch64, build, 2, linux-aarch64, [self-hosted linux arm64]) (push) Has been cancelled
Build and test GAM / build (aarch64, build, 4, linux-aarch64, [self-hosted linux arm64], yes) (push) Has been cancelled
Build and test GAM / build (aarch64, build, 6, darwin64-arm64, macos-14) (push) Has been cancelled
Build and test GAM / build (x86_64, build, 1, linux-x86_64, ubuntu-22.04) (push) Has been cancelled
Build and test GAM / build (x86_64, build, 3, linux-x86_64, ubuntu-22.04, yes) (push) Has been cancelled
Build and test GAM / build (x86_64, build, 5, darwin64-x86_64, macos-13) (push) Has been cancelled
Build and test GAM / build (x86_64, test, 10, ubuntu-24.04, 3.10) (push) Has been cancelled
Build and test GAM / build (x86_64, test, 11, ubuntu-24.04, 3.11) (push) Has been cancelled
Build and test GAM / build (x86_64, test, 8, ubuntu-24.04, 3.13) (push) Has been cancelled
Build and test GAM / build (x86_64, test, 9, ubuntu-24.04, 3.9) (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
Check for Google Root CA Updates / check-apis (push) Has been cancelled
Build and test GAM / merge (push) Has been cancelled
Build and test GAM / publish (push) Has been cancelled
49 lines
1.7 KiB
Markdown
49 lines
1.7 KiB
Markdown
# Users - Contacts - Delegates
|
|
- [API documentation](#api-documentation)
|
|
- [Notes](#notes)
|
|
- [Definitions](#definitions)
|
|
- [Create contact delegates](#create-contact-delegates)
|
|
- [Delete contact delegates](#delete-contact-delegates)
|
|
- [Display contact delegates](#display-contact-delegates)
|
|
|
|
## API documentation
|
|
* https://developers.google.com/admin-sdk/contact-delegation/reference/rest/v1/admin.contacts.v1.users.delegates
|
|
|
|
## Notes
|
|
Contact delegation must be enabled, see the following:
|
|
|
|
* https://support.google.com/contacts/answer/2590392
|
|
* https://support.google.com/a/answer/60218?sjid=15009482130973386336-NA
|
|
|
|
## Definitions
|
|
* [`<UserTypeEntity>`](Collections-of-Users)
|
|
|
|
```
|
|
<DomainName> ::= <String>(.<String>)+
|
|
<EmailAddress> ::= <String>@<DomainName>
|
|
<UniqueID> ::= id:<String>
|
|
<UserItem> ::= <EmailAddress>|<UniqueID>|<String>
|
|
<UserList> ::= "<UserItem>(,<UserItem>)*"
|
|
<UserEntity> ::=
|
|
<UserList> | <FileSelector> | <CSVkmdSelector> | <CSVDataSelector>
|
|
See: https://github.com/GAM-team/GAM/wiki/Collections-of-Users
|
|
```
|
|
## Create contact delegates
|
|
```
|
|
gam <UserTypeEntity> create|add contactdelegate <UserEntity>
|
|
```
|
|
## Delete contact delegates
|
|
```
|
|
gam <UserTypeEntity> delete|del contactdelegate <UserEntity>
|
|
```
|
|
## Display contact delegates
|
|
```
|
|
gam <UserTypeEntity> show contactdelegates [shownames] [csv]
|
|
gam <UserTypeEntity> print contactdelegates [todrive <ToDriveAttribute>*] [shownames]
|
|
```
|
|
By default, delegate names are not displayed; use the `shownames` option to display the delegates name.
|
|
This involves an extra API call per delegate email address.
|
|
|
|
By default, `show delegates` displays indented keys and values; use the `csv` option to have just the values
|
|
shown as a comma separated list.
|