-
Notifications
You must be signed in to change notification settings - Fork 100
Users Chat
- API documentation
- Introduction
- Set up a Chat Bot
- Definitions
- Manage Chat Spaces
- Display Chat Spaces
- Manage Chat Members
- Display Chat Members
- Manage Chat Messages
- Display Chat Messages
- https://developers.google.com/chat/concepts
- https://developers.google.com/chat/reference/rest
- https://support.google.com/chat/answer/7655820
These features were added in version 6.60.00.
To use these commands you must update your service account authorization.
gam user user@domain.com update serviceaccount
[*] 3) Chat API - Memberships (supports readonly)
[*] 4) Chat API - Messages (supports readonly)
[*] 5) Chat API - Spaces (supports readonly)
[*] 6) Chat API - Spaces Delete
Google requires that you have a Chat Bot configured in order to use the Chat API; set up a Chat Bot as described in the next section.
- Run the command
gam setup chat; it will point you to a URL to configure your Chat Bot; this is required to use the Chat API. - Enter an App name and Description of your choosing.
- For the Avatar URL you can use
https://dummyimage.com/384x256/4d4d4d/0011ff.png&text=+GAMor a public URL to an image of your own choosing. - In Functionality, uncheck both "Receive 1:1 messages" and "Join spaces and group conversations"
- In Connection settings, choose "Cloud Pub/Sub" and enter "no-topic" for the topic name. GAM doesn't yet listen to pub/sub so this option is not used.
- In Visibility, uncheck "Make this Chat app available to specific people and groups in Redwood Day School".
- Click Save.
<UserTypeEntity>-
Drive File Selection for symbols not listed here, such as
<DriveFileIDEntity> - Command data from Google Docs/Sheets/Storage
<StorageBucketName> ::= <String>
<StorageObjectName> ::= <String>
<StorageBucketObjectName> ::=
https://storage.cloud.google.com/<StorageBucketName>/<StorageObjectName>|
https://storage.googleapis.com/<StorageBucketName>/<StorageObjectName>|
gs://<StorageBucketName>/<StorageObjectName>|
<StorageBucketName>/<StorageObjectName>
<UserGoogleDoc> ::=
<EmailAddress> <DriveFileIDEntity>|<DriveFileNameEntity>|(<SharedDriveEntity> <SharedDriveFileNameEntity>)
<ChatContent> ::=
((text <String>)|
(textfile <FileName> [charset <CharSet>])|
(gdoc <UserGoogleDoc>)|
(gcsdoc <StorageBucketObjectName>))
<ChatMember> ::= spaces/<String>/members/<String>
<ChatMemberList> ::= "<ChatMember>(,<ChatMember>)*"
<ChatMessage> ::= spaces/<String>/messages/<String>
<ChatSpace> ::= spaces/<String> | space <String> | space spaces/<String>
<ChatThread> ::= spaces/<String>/threads/<String>
<ChatSpaceType> ::=
space|
groupchat|
directmessage
<ChatSpaceTypeList> ::= "<ChatSpaceType>(,<ChatSpaceType>)*"
<ChatMessageID> ::= client-<String>
<String> must contain only lowercase letters, numbers, and hyphens up to 56 characters in length.
gam <UserTypeEntity> create chatspace
[type <ChatSpaceType>]
[members <UserTypeEntity>]
[displayname <String>]
[description <String>] [guidelines <String>]
[history <Boolean>]
[<ChatContent>]
[formatjson|returnidonly]
For type space, the following apply:
-
member <UserTypeEntity>- Optional, can not specify more that 20 users -
displayname <String>- Required -
description <String>- Optional -
guidelines <String>- Optional -
history <Boolean>- Optional
For type groupchat, the following apply:
-
member <UserTypeEntity>- Required, must specify between 2 and 20 users -
displayname <String>- Ignored -
description <String>- Optional -
guidelines <String>- Optional -
history <Boolean>- Optional
For type directmessage, the following apply:
-
member <UserTypeEntity>- Required, must specify 1 user -
displayname <String>- Ignored -
description <String>- Ignored -
guidelines <String>- Ignored -
history <Boolean>- Optional
By default, Gam displays the information about the created chatspace as an indented list of keys and values.
-
formatjson- Display the fields in JSON format. -
returnidonly- Display the chatspace name only
Use the <ChatContent> option to send an initial message to the created chatspace.
By default, details about the chatmessage are displayed.
-
returnidonly- Display the chatmessage name only
gam <UserTypeEntity> update chatspace <ChatSpace>
[type space]
[displayname <String>]
[description <String>] [guidelines <String>]
[history <Boolean>]
[formatjson]
A groupchat space can be upgraded to a space by specifying type space and displayname <String>.
By default, Gam displays the information about the created chatspace as an indented list of keys and values.
-
formatjson- Display the fields in JSON format.
gam <UserTypeEntity> delete chatspace <ChatSpace>
gam <UserTypeEntity> info chatspace <ChatSpace>
[formatjson]
By default, Gam displays the information as an indented list of keys and values.
-
formatjson- Display the fields in JSON format.
gam <UserTypeEntity> show chatspaces
[types <ChatSpaceTypeList>]
[formatjson]
By default, Gam displays the information as an indented list of keys and values.
-
formatjson- Display the fields in JSON format.
gam <UserTypeEntity> print chatspaces [todrive <ToDriveAttribute>*]
[types <ChatSpaceTypeList>]
[formatjson [quotechar <Character>]]
By default, Gam displays the information as columns of fields; the following option causes the output to be in JSON format,
-
formatjson- Display the fields in JSON format.
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.
When using the formatjson option, double quotes are used extensively in the data resulting in hard to read/process output.
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 config auto_batch_min 1 redirect csv ./ChatSpaces.csv multiprocess [todrive <ToDriveAttribute>*] redirect stdout - multiprocess redirect stderr <UserTypeEntity> print chatspaces
[types <ChatSpaceTypeList>]
[formatjson [quotechar <Character>]]
gam <UserTypeEntity> create chatmember <ChatSpace>
[type human|bot]
((user <UserItem>)|(members <UserTypeEntity>))*
[formatjson|returnidonly]
By default, Gam displays the information about the chatmember as an indented list of keys and values.
-
formatjson- Display the fields in JSON format. -
returnidonly- Display the chatmember name only
Delete members by specifying a chat space and user email addresses.
gam <UserTypeEntity> delete chatmember <ChatSpace>
((user <UserItem>)|(members <UserTypeEntity>))+
Delete members by specifying chatmember names.
gam <UserTypeEntity> remove chatmember members <ChatMemberList>
gam <UserTypeEntity> info chatmember members <ChatMemberList>
[formatjson]
By default, Gam displays the information as an indented list of keys and values.
-
formatjson- Display the fields in JSON format.
gam <UserTypeEntity> show chatmembers <ChatSpace>
[showinvited [<Boolean>]] [filter <String>]
[formatjson]
By default, Gam displays the information as an indented list of keys and values.
-
formatjson- Display the fields in JSON format.
gam <UserTypeEntity> print chatmembers [todrive <ToDriveAttribute>*] <ChatSpace>
[showinvited [<Boolean>]] [filter <String>]
[formatjson [quotechar <Character>]]
By default, Gam displays the information as columns of fields; the following option causes the output to be in JSON format,
-
formatjson- Display the fields in JSON format.
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.
When using the formatjson option, double quotes are used extensively in the data resulting in hard to read/process output.
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.
By default, only JOINED members are displayed; use showinvited to also display INVITED members.
Use filter <String> to filter memberships by a member's role and member.type.
- To filter by role, set role to ROLE_MEMBER or ROLE_MANAGER.
- To filter by type, set member.type to HUMAN or BOT.
- To filter by both role and type, use the AND operator.
- To filter by either role or type, use the OR operator.
For example, the following queries are valid:
role = "ROLE_MANAGER" OR role = "ROLE_MEMBER"
member.type = "HUMAN" AND role = "ROLE_MANAGER"
The following queries are invalid:
member.type = "HUMAN" AND member.type = "BOT"
role = "ROLE_MANAGER" AND role = "ROLE_MEMBER"
gam config auto_batch_min 1 redirect csv ./ChatSpaces.csv multiprocess [todrive <ToDriveAttribute>*] redirect stdout - multiprocess redirect stderr <UserTypeEntity> print chatspaces
[types <ChatSpaceTypeList>]
[formatjson [quotechar <Character>]]
gam redirect csv ./ChatSpaceMembers.csv multiprocess [todrive <ToDriveAttribute>*] redirect stdout - multiprocess redirect stderr stdout csv ./ChatSpaces.csv gam user "~User" print chatmembers "~name"
[showinvited [<Boolean>]] [filter <String>]
[formatjson [quotechar <Character>]]
There is no way to delete a user from a directmessage space.
gam redirect csv ./UserChatSpaces.csv user user@domain.com print chatspaces types space,groupchat
gam redirect stdout ./DeleteUserChatMemberships.txt multiprocess redirect stderr stdout csv ./UserChatSpaces.csv gam user "~User" delete chatmember "~name" user "~User"
Messages are limited to 4,096 characters and will be trimmed to that length.
Chat supports simple formatting allowing you to bold, underline, italics and strikethrough your text.
gam <UserTypeEntity> create chatmessage <ChatSpace>
<ChatContent>
[messageId <ChatMessageID>]
[(thread <ChatThread>)|(threadkey <String>) [replyoption fail|fallbacktonew]]
[returnidonly]
Specify the text of the message: <ChatContent>
-
text <String>- The message is<String> -
textfile <FileName> [charset <CharSet>]- The message is read from a local file -
gdoc <UserGoogleDoc>- The message is read from a Google Doc. -
gcsdoc <StorageBucketObjectName>- The message is read from a Google Cloud Storage file.
By default, a new message thread is created; use thread <ChatThread> or threadkey <String> to create the message as a reply to an existing thread.
Use replyoption to specify what happens if the specified thread does not exist:
-
fail- If the thread soes not exiat, aNot Founderror is generated -
fallbacktonew- If the thread does not exist, start a new thread
The first time you reply to a thread you must use thread <ChatThread>; if you also specify threadkey <String>
then you can use just threadkey <String> in subsequent replies.
If you specify thread or threadkey but not replyoption, the default is `fail'.
By default, details about the chatmessage are displayed.
-
returnidonly- Display the chatmessage name only
This example creates a new chat message in the given room.
gam user user@domain.com create chatmessage space spaces/iEMj8AAAAAE text "Hello Chat"
This example creates a formatted message and posts it to an existing thread
gam user user@domain.com create chatmessage space spaces/AAAADi-pvqc thread spaces/AAAADi-pvqc/threads/FMNw-iE9jN4 text "*Bold* _Italics_ ~Strikethrough~"
This example reads the MotD.txt file and posts its contents to Chat.
gam user user@domain.com create chatmessage spaces spaces/AAAADi-pvqc textfile MotD.txt
This example reads the Google Doc MotD and posts its contents to Chat.
gam user user@domain.com create chatmessage spaces spaces/AAAADi-pvqc gdoc announcements@domain.com name "MotD"
Updates and rewrites an existing Chat message. Message will show as edited and no notification will be sent to members.
gam <UserTypeEntity> update chatmessage name <ChatMessage>
<ChatContent>
Specify the text of the message: <ChatContent>
-
text <String>- The message is<String> -
textfile <FileName> [charset <CharSet>]- The message is read from a local file -
gdoc <UserGoogleDoc>- The message is read from a Google Doc. -
gcsdoc <StorageBucketObjectName>- The message is read from a Google Cloud Storage file.
This example updates an existing chat message with new text.
gam user user@domain.com update chatmessage name spaces/AAAADi-pvqc/messages/PKJrx90ooIU.PKJrx90ooIU text "HELLO CHAT?"
Deletes the given Chat message. Members will no longer see the message.
gam <UserTypeEntity> delete chatmessage name <ChatMessage>
gam user user@domain.com delete chatmessage name spaces/AAAADi-pvqc/messages/PKJrx90ooIU.PKJrx90ooIU
Display a specific Chat message.
gam <UserTypeEntity> info chatmessage name <ChatMessage>
[filter <String>]
[formatjson]
By default, Gam displays the information as an indented list of keys and values.
-
formatjson- Display the fields in JSON format.
gam user user@domain.com info chatmessage name spaces/AAAADi-pvqc/messages/PKJrx90ooIU.PKJrx90ooIU
gam <UserTypeEntity> show chatmessages <ChatSpace>
[showdeleted [<Boolean>]] [filter <String>]
[formatjson]
By default, Gam displays the information as an indented list of keys and values.
-
formatjson- Display the fields in JSON format.
gam <UserTypeEntity> print chatmessages [todrive <ToDriveAttribute>*] <ChatSpace>
[showdeleted [<Boolean>]] [filter <String>]
[formatjson [quotechar <Character>]]
By default, Gam displays the information as columns of fields; the following option causes the output to be in JSON format,
-
formatjson- Display the fields in JSON format.
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.
When using the formatjson option, double quotes are used extensively in the data resulting in hard to read/process output.
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.
By default, deleted messages are not displayed; use showdeleted to also display deleted messages.
Use filter <String> to filter messages by createTime' and thread.name`.
To filter messages by the date they were created, specify the createTime with a timestamp in RFC-3339 format and double quotation marks. For example, "2023-04-21T11:30:00-04:00".
- Use the greater than operator
>to list messages that were created after a timestamp. - Use the less than operator
<to list messages that were created before a timestamp. - To filter messages within a time interval, use the AND operator between two timestamps.
- To filter by thread, specify the thread.name, formatted as spaces/{space}/threads/{thread}. You can only specify one thread.name per query.
- To filter by both thread and date, use the AND operator in your query.
For example, the following queries are valid:
createTime > "2012-04-21T11:30:00-04:00"
createTime > "2012-04-21T11:30:00-04:00" AND thread.name = spaces/AAAAAAAAAAA/threads/123
createTime > "2012-04-21T11:30:00+00:00" AND createTime < "2013-01-01T00:00:00+00:00" AND thread.name = spaces/AAAAAAAAAAA/threads/123
thread.name = spaces/AAAAAAAAAAA/threads/123
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
- Unmanaged Accounts
- Users
- Users - Application Specific Passwords
- Users - Backup Verification Codes
- Users - Classroom - Profile
- Users - Contacts - Delegates
- Users - Deprovision
- Users - Group Membership
- Users - Photo
- Users - Profile Sharing
- Users - Signout and Turn off 2-Step Verification
- Users - Tokens
- Vault - Takeout
- Version and Help
Special Service Account Access
Service Account Access
- Users - Analytics Admin
- Users - Calendars
- Users - Calendars - Access
- Users - Calendars - Events
- Users - Chat
- Users - Classification Labels
- Users - Contacts
- 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 - Keep - Notes
- Users - Looker Studio
- Users - Meet
- Users - Classroom - Profile
- Users - People - Contacts & Profiles
- Users - Profile Photo
- Users - Shared Drives
- Users - Spreadsheets
- Users - Tasks
- Users - YouTube