Appearance
Google Analytics
Access GA4 reporting data including metrics, dimensions, and audience exports.
| Detail | Value |
|---|---|
| Category | Productivity |
| Base URL | https://analyticsdata.googleapis.com/v1beta |
| Authentication | OAuth2 Client Credentials |
| Endpoints | 4 |
| Connector key | google-analytics |
Using Google Analytics in a workflow
- Go to Connections and click New Connection.
- Pick Google Analytics from the marketplace.
- Enter your credentials (see Authentication above for what's expected).
- In a workflow, drop an API Call node and select this connection.
- Pick the operation you need from the Operation dropdown — the full list is below.
Available endpoints
| Endpoint | Summary |
|---|---|
POST /properties/{propertyId}:runReport | Run a GA4 report |
POST /properties/{propertyId}:runRealtimeReport | Run a realtime report |
GET /properties/{propertyId}/metadata | Get available dimensions and metrics |
POST /properties/{propertyId}:batchRunReports | Run multiple reports in batch |
Each endpoint is documented in full below. Use the outline on the right to jump to one.
POST /properties/{propertyId}:runReport
Run a GA4 report
| Detail | Value |
|---|---|
| Operation ID | productivity.runReport |
| Method | POST |
| Path | /properties/{propertyId}:runReport |
Parameters
| Name | Location | Type | Required |
|---|---|---|---|
propertyId | path | string | Yes |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Google Analytics connection from the Connection dropdown.
- In the Operation dropdown, select
productivity.runReport. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
Required fields are marked — fill them or the call will fail at runtime.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Google Analytics API reference.
POST /properties/{propertyId}:runRealtimeReport
Run a realtime report
| Detail | Value |
|---|---|
| Operation ID | productivity.runRealtimeReport |
| Method | POST |
| Path | /properties/{propertyId}:runRealtimeReport |
Parameters
| Name | Location | Type | Required |
|---|---|---|---|
propertyId | path | string | Yes |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Google Analytics connection from the Connection dropdown.
- In the Operation dropdown, select
productivity.runRealtimeReport. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
Required fields are marked — fill them or the call will fail at runtime.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Google Analytics API reference.
GET /properties/{propertyId}/metadata
Get available dimensions and metrics
| Detail | Value |
|---|---|
| Operation ID | productivity.getMetadata |
| Method | GET |
| Path | /properties/{propertyId}/metadata |
Parameters
| Name | Location | Type | Required |
|---|---|---|---|
propertyId | path | string | Yes |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Google Analytics connection from the Connection dropdown.
- In the Operation dropdown, select
productivity.getMetadata. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
Required fields are marked — fill them or the call will fail at runtime.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Google Analytics API reference.
POST /properties/{propertyId}:batchRunReports
Run multiple reports in batch
| Detail | Value |
|---|---|
| Operation ID | productivity.batchRunReports |
| Method | POST |
| Path | /properties/{propertyId}:batchRunReports |
Parameters
| Name | Location | Type | Required |
|---|---|---|---|
propertyId | path | string | Yes |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Google Analytics connection from the Connection dropdown.
- In the Operation dropdown, select
productivity.batchRunReports. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
Required fields are marked — fill them or the call will fail at runtime.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Google Analytics API reference.