install
source · Clone the upstream repo
git clone https://github.com/googleworkspace/cli
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/googleworkspace/cli "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/gws-chat" ~/.claude/skills/googleworkspace-cli-gws-chat && rm -rf "$T"
manifest:
skills/gws-chat/SKILL.mdsource content
chat (v1)
PREREQUISITE: Read
for auth, global flags, and security rules. If missing, run../gws-shared/SKILL.mdto create it.gws generate-skills
gws chat <resource> <method> [flags]
Helper Commands
| Command | Description |
|---|---|
| Send a message to a space |
API Resources
customEmojis
— Creates a custom emoji. Custom emojis are only available for Google Workspace accounts, and the administrator must turn custom emojis on for the organization. For more information, see Learn about custom emojis in Google Chat and Manage custom emoji permissions.create
— Deletes a custom emoji. By default, users can only delete custom emoji they created. Emoji managers assigned by the administrator can delete any custom emoji in the organization. See Learn about custom emojis in Google Chat. Custom emojis are only available for Google Workspace accounts, and the administrator must turn custom emojis on for the organization.delete
— Returns details about a custom emoji. Custom emojis are only available for Google Workspace accounts, and the administrator must turn custom emojis on for the organization. For more information, see Learn about custom emojis in Google Chat and Manage custom emoji permissions.get
— Lists custom emojis visible to the authenticated user. Custom emojis are only available for Google Workspace accounts, and the administrator must turn custom emojis on for the organization. For more information, see Learn about custom emojis in Google Chat and Manage custom emoji permissions.list
media
— Downloads media. Download is supported on the URIdownload
./v1/media/{+name}?alt=media
— Uploads an attachment. For an example, see Upload media as a file attachment.upload
spaces
— Completes the import process for the specified space and makes it visible to users.completeImport
— Creates a space. Can be used to create a named space, or a group chat increate
. For an example, see Create a space.Import mode
— Deletes a named space. Always performs a cascading delete, which means that the space's child resources—like messages posted in the space and memberships in the space—are also deleted. For an example, see Delete a space.delete
— Returns the existing direct message with the specified user. If no direct message space is found, returns afindDirectMessage
error. For an example, see Find a direct message. With app authentication, returns the direct message space between the specified user and the calling Chat app.404 NOT_FOUND
— Returns details about a space. For an example, see Get details about a space.get
— Lists spaces the caller is a member of. Group chats and DMs aren't listed until the first message is sent. For an example, see List spaces.list
— Updates a space. For an example, see Update a space. If you're updating thepatch
field and receive the error messagedisplayName
, try a different display name.. An existing space within the Google Workspace organization might already use this display name.ALREADY_EXISTS
— Returns a list of spaces in a Google Workspace organization based on an administrator's search. In the request, setsearch
touse_admin_access
. For an example, see Search for and manage spaces.true
— Creates a space and adds specified users to it. The calling user is automatically added to the space, and shouldn't be specified as a membership in the request. For an example, see Set up a space with initial members. To specify the human members to add, add memberships with the appropriatesetup
. To add a human user, usemembership.member.name
, whereusers/{user}
can be the email address for the user.{user}
— Operations on the 'members' resourcemembers
— Operations on the 'messages' resourcemessages
— Operations on the 'spaceEvents' resourcespaceEvents
users
— Operations on the 'sections' resourcesections
— Operations on the 'spaces' resourcespaces
Discovering Commands
Before calling any API method, inspect it:
# Browse resources and methods gws chat --help # Inspect a method's required params, types, and defaults gws schema chat.<resource>.<method>
Use
gws schema output to build your --params and --json flags.