get_stats_by_browser
Retrieve email statistics grouped by browser type to analyze email campaign performance across different web browsers and optimize email compatibility.
Instructions
Retrieve email statistics grouped by browser type
Input Schema
Name | Required | Description | Default |
---|---|---|---|
aggregated_by | No | How to group the statistics | day |
browsers | No | Comma-separated list of browsers to filter by | |
end_date | No | End date in YYYY-MM-DD format (defaults to today) | |
start_date | Yes | Start date in YYYY-MM-DD format |
Input Schema (JSON Schema)
{
"properties": {
"aggregated_by": {
"default": "day",
"description": "How to group the statistics",
"enum": [
"day",
"week",
"month"
],
"type": "string"
},
"browsers": {
"description": "Comma-separated list of browsers to filter by",
"type": "string"
},
"end_date": {
"description": "End date in YYYY-MM-DD format (defaults to today)",
"type": "string"
},
"start_date": {
"description": "Start date in YYYY-MM-DD format",
"type": "string"
}
},
"required": [
"start_date"
],
"type": "object"
}