get_category_stats
Retrieve email performance statistics for specific categories to analyze marketing campaign effectiveness and track engagement metrics over time.
Instructions
Retrieve email statistics for specific categories (available for previous 13 months only)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
aggregated_by | No | How to group the statistics | day |
categories | Yes | Comma-separated list of categories to retrieve stats for | |
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"
},
"categories": {
"description": "Comma-separated list of categories to retrieve stats for",
"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": [
"categories",
"start_date"
],
"type": "object"
}