smartlead_get_campaign_sequence_analytics
Fetch analytics data for email campaign sequences to track performance metrics and engagement over specific time periods.
Instructions
Fetch analytics data for a specific email campaign sequence.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
campaign_id | Yes | ID of the campaign to fetch sequence analytics for | |
end_date | Yes | End date in YYYY-MM-DD HH:MM:SS format | |
start_date | Yes | Start date in YYYY-MM-DD HH:MM:SS format | |
time_zone | No | Timezone for the analytics data (e.g., "Europe/London") |
Input Schema (JSON Schema)
{
"properties": {
"campaign_id": {
"description": "ID of the campaign to fetch sequence analytics for",
"type": "number"
},
"end_date": {
"description": "End date in YYYY-MM-DD HH:MM:SS format",
"type": "string"
},
"start_date": {
"description": "Start date in YYYY-MM-DD HH:MM:SS format",
"type": "string"
},
"time_zone": {
"description": "Timezone for the analytics data (e.g., \"Europe/London\")",
"type": "string"
}
},
"required": [
"campaign_id",
"start_date",
"end_date"
],
"type": "object"
}