getActiveUsers
Retrieve active user metrics from Google Analytics 4 for a specified date range to analyze website or app engagement.
Instructions
Get active users metrics for a specific date range
Input Schema
Name | Required | Description | Default |
---|---|---|---|
endDate | Yes | End date in YYYY-MM-DD format | |
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"
},
"startDate": {
"description": "Start date in YYYY-MM-DD format",
"type": "string"
}
},
"required": [
"startDate",
"endDate"
],
"type": "object"
}