ActionGoogle AnalyticsUpdated September 2026
How do I run a Google Analytics report?
Short answer: You can ga run report in Google Analytics by hand from its own interface, but it won’t repeat itself. On TinyCommand, add the Google Analytics GA Run Report action to a workflow, map its 5 inputs from any upstream app, and it runs automatically every time the trigger fires. No code, and a free tier to start.
Inputs
The fields this action accepts.
Every field can be mapped from an upstream trigger, AI step, table row, or hard-coded literal.
| Field | Type | Required | Description |
|---|---|---|---|
Property ID propertyId | string | Required | Property ID. Example: 123456789 |
Start Date startDate | date | Required | Start Date. (date/time) |
End Date endDate | date | Required | End Date. (date/time) |
Metrics metrics | string | Required | Comma-separated metric names |
Dimensions dimensions | string | Optional | Comma-separated dimension names |
Sample request
{"propertyId": "e.g. 123456789","startDate": "{{trigger.startDate}}","endDate": "{{trigger.endDate}}","metrics": "{{trigger.metrics}}","dimensions": "date,country,pagePath"}
Returns
{"rows": [{"metricValues": [{"value": "1500"},{"value": "1200"},{"value": "3500"}],"dimensionValues": [{"value": "20260411"}]}],"metadata": {"currencyCode": "USD"},"rowCount": 1}
Use these fields in downstream nodes for routing, logging, or error handling.
Triggered by
Apps that pair well as the trigger for GA Run Report.
Any of these apps can fire this action as part of a workflow.
FAQ
Questions about GA Run Report.
What does the GA Run Report action do in Google Analytics?
Standard date-range analytics query — GA4 dimensions and metrics. For weekly/monthly digest workflows or for "alert when key metric drops" performance monitoring.
What inputs does GA Run Report require?
Required: Property ID, Start Date, End Date, Metrics. Every input accepts a static value or a variable from any upstream node in your workflow.
Can I use dynamic inputs from earlier workflow nodes?
Yes. Any field on this action can pull values from upstream nodes, whether that's a form response, a trigger payload, an AI output, or a lookup result.
What happens if Google Analytics returns an error?
The run history shows the failed step with its input and the error message Google Analytics returned, so you can fix the input and run the workflow again. Automatic retries are built into HTTP steps only, where you can also set your own retry count and delay.
Does GA Run Report support batch operations?
Run GA Run Report inside a loop to process each item in an array. TinyCommand does not throttle calls for you, so for large arrays add a Delay step if you need to stay within Google Analytics's rate limits.
More actions