smartlead_get_campaign_statistics_by_date
Retrieve email campaign performance metrics for a specific date range to analyze engagement and track marketing effectiveness.
Instructions
Fetch campaign statistics for a specific date range.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
campaign_id | Yes | ID of the campaign to fetch statistics 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 statistics for",
"type": "number"
},
"end_date": {
"description": "End date in YYYY-MM-DD format",
"type": "string"
},
"start_date": {
"description": "Start date in YYYY-MM-DD format",
"type": "string"
}
},
"required": [
"campaign_id",
"start_date",
"end_date"
],
"type": "object"
}