smartlead_get_campaign_analytics_by_date
Retrieve campaign performance metrics for a specified date range to analyze email marketing effectiveness and track key engagement data.
Instructions
Fetch campaign analytics for a specific date range.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
campaign_id | Yes | ID of the campaign to fetch analytics for | |
end_date | Yes | End date in YYYY-MM-DD format | |
start_date | Yes | Start date in YYYY-MM-DD format |
Input Schema (JSON Schema)
{
"properties": {
"campaign_id": {
"description": "ID of the campaign to fetch analytics for",
"type": "number"
},
"end_date": {
"description": "End date in YYYY-MM-DD format",
"format": "date",
"type": "string"
},
"start_date": {
"description": "Start date in YYYY-MM-DD format",
"format": "date",
"type": "string"
}
},
"required": [
"campaign_id",
"start_date",
"end_date"
],
"type": "object"
}