Skip to main content
The Integrations API lets you extend Google by connecting it to the tools your team already relies on. Whether you are programmatically setting up Slack notifications as part of a workspace provisioning script, querying the status of an existing GitHub sync, or building an admin dashboard that surfaces all active connections at a glance, every integration lifecycle operation is available through this API. All requests require a valid Bearer token in the Authorization header.

List Integrations

Return all integrations available to your workspace, optionally filtered by connection status or type. GET https://api.google.com/v1/integrations

Query Parameters

string
Filter by connection status. Accepted values: connected, available.
string
Filter by integration type. Examples: slack, github, zapier.

Example Request

Example Response

Response Fields

boolean
Indicates whether the request completed successfully.
array
Array of integration objects matching the query.

Get Integration

Fetch the full details and current configuration for a single integration by its unique ID. GET https://api.google.com/v1/integrations/:id

Path Parameters

string
required
The unique identifier of the integration to retrieve (e.g., int_slack_01).

Example Request

Example Response


Connect Integration

Create a new integration connection for your workspace by specifying the integration type and its required configuration. POST https://api.google.com/v1/integrations

Body Parameters

string
required
The integration type to connect. Examples: slack, github, zapier.
object
required
An object containing integration-specific configuration settings. The required keys vary by integration type — refer to each integration’s documentation for the accepted fields.

Example Request — Connecting Slack

Example Response

Integrations that use OAuth for authentication (such as GitHub and Google Drive) cannot be fully connected through the API alone. You must complete the OAuth authorization flow in the Google web interface before their configuration becomes active. The API will return a pending_auth status for these integrations until authorization is complete.

Update Integration Config

Modify the configuration of an existing integration without disconnecting and reconnecting it. Only the fields you include are updated. PATCH https://api.google.com/v1/integrations/:id

Path Parameters

string
required
The unique identifier of the integration to update.

Body Parameters

object
required
An object containing the configuration fields you want to update. For example, you can update the Slack channel target or change the list of subscribed events. Keys not included are preserved as-is.

Example Request

Example Response

When updating event subscriptions, provide the complete desired list of events. The events array in config is fully replaced on each update, not appended to.

Disconnect Integration

Remove an integration from your workspace, severing the connection to the third-party service. DELETE https://api.google.com/v1/integrations/:id
Disconnecting an integration is immediate. Any automated workflows, notifications, or sync jobs driven by this integration will stop functioning at the moment of disconnection. For Slack integrations, event notifications will stop. For GitHub integrations, code sync will be suspended. Reconnecting will require reconfiguring the integration and, for OAuth-based services, completing the authorization flow again.

Path Parameters

string
required
The unique identifier of the integration to disconnect.

Example Request

A successful disconnection returns HTTP 204 No Content with an empty body.

Error Reference

The request body is missing required fields or contains an unrecognized integration type. Verify the payload and try again.
Your API key is missing or invalid. Include a valid Bearer token in the Authorization header.
No integration exists with the specified id. Confirm the ID using the List Integrations endpoint.
An integration of this type is already connected to your workspace. Disconnect the existing integration before creating a new one of the same type.
The config object is missing required fields for the specified integration type, or contains invalid values.