getEvents
Retrieve Google Analytics event metrics for a specified date range to analyze user interactions and track specific events on your website or application.
Instructions
Get event metrics for a specific date range
Input Schema
Name | Required | Description | Default |
---|---|---|---|
endDate | Yes | End date in YYYY-MM-DD format | |
eventName | No | Specific event name to filter by (optional) | |
startDate | Yes | Start date in YYYY-MM-DD format |
Input Schema (JSON Schema)
{
"properties": {
"endDate": {
"description": "End date in YYYY-MM-DD format",
"type": "string"
},
"eventName": {
"description": "Specific event name to filter by (optional)",
"type": "string"
},
"startDate": {
"description": "Start date in YYYY-MM-DD format",
"type": "string"
}
},
"required": [
"startDate",
"endDate"
],
"type": "object"
}