View as Markdown
Google Analytics icon

Google Analytics ACTION

Create Key Event

Creates a new key event. See the documentation
  • Action
  • Writes data
  • OAuth
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Google Analytics account once, then configure and run Create Key Event from your backend or agent.

import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "google_analytics-create-key-event",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    google_analytics: { authProvisionId: "apn_xxxxxxx" },
    parent: "Property",
    eventName: "Event Name",
  },
})

console.log(result)

SCHEMA

Inputs

Pipedream supplies the connected account. Your application provides the operation-specific values below. Dynamic inputs are resolved against that user's account.

Create Key Event inputs
Property Type Description
parent Property string
The resource name of the parent property where this Key Event will be created. Format: properties/123
Required Dynamic
eventName Event Name string
Immutable. The event name for this key event. Examples: click, purchase
Required
countingMethod Counting Method string
The method by which Key Events will be counted across multiple events within a session.
Required

REFERENCE

Tool details

Behavior hints are published with the component in the Pipedream registry and surface as MCP tool annotations, so an agent can reason about a tool before it calls it.

Registry key
google_analytics-create-key-event
Version
0.0.3
App
Google Analytics
Authentication
OAuth
Read-only
No
Destructive
No
Open world
Yes