Raw Google Chat API call
raw_requestSend direct requests to any Google Chat API v1 endpoint for actions not covered by standard tools, such as creating spaces, DMs, or custom reactions.
Instructions
Escape hatch to call any Google Chat API v1 path directly, for requests the typed tools don't cover — e.g. creating a space (path "v1/spaces", method POST, body {"spaceType":"SPACE","displayName":"..."}), setting up a DM ("v1/spaces:setup"), custom-emoji reactions, Google Group memberships, space events ("v1/spaces//spaceEvents"), or updating a space ("v1/spaces/" PATCH with a query updateMask). The path may carry a query string (e.g. "v1/spaces/AAA/members?showInvited=true"). The Bearer token is added automatically; the method defaults to GET. Not for media: attachment upload/download use different endpoints (upload/v1, media/v1) that this server does not proxy.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| body | No | JSON request body (POST/PATCH only). | |
| path | Yes | API path relative to https://chat.googleapis.com, e.g. "v1/spaces/AAA/messages". | |
| method | No | HTTP method (the Chat API uses these four). Defaults to GET. |