webflow.deleteAllGoogleTags removes every Google tag configured for a site.
Example
automations/webflow-delete-all-google-tags.automation.ts
Inputs
Every input accepts a compatible signal. This action requires thesites:write OAuth scope.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Removes every Google tag configured for one Webflow site.
webflow.deleteAllGoogleTags removes every Google tag configured for a site.
import { automation, onDashboardRun } from "automate.ax"
import { webflow } from "automate.ax/webflow"
export default automation("Delete all Google tags", () => {
onDashboardRun({ title: "Delete all Google tags" })
webflow.deleteAllGoogleTags({ siteId: "site-id" })
})
sites:write OAuth scope.
| Field | Type | Required | Description |
|---|---|---|---|
siteId | string | Yes | Webflow site ID. |