getUserBehavior
Retrieve user behavior metrics including session duration and bounce rate from Google Analytics 4 data for specified date ranges to analyze website engagement patterns.
Instructions
Get user behavior metrics like session duration and bounce rate
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"
}