smartlead_get_campaign_statistics
Retrieve and analyze email campaign performance data by fetching statistics based on campaign ID, with options to filter by email sequence, status, and date ranges for targeted insights.
Instructions
Fetch campaign statistics using the campaign's ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
campaign_id | Yes | ID of the campaign to fetch statistics for | |
email_sequence_number | No | Email sequence number to filter by (e.g., "1,2,3,4") | |
email_status | No | Email status to filter by (e.g., "opened", "clicked", "replied", "unsubscribed", "bounced") | |
limit | No | Maximum number of statistics to return | |
offset | No | Offset for pagination | |
sent_time_end_date | No | Filter by sent time less than this date (e.g., "2023-10-16 10:33:02.000Z") | |
sent_time_start_date | No | Filter by sent time greater than this date (e.g., "2023-10-16 10:33:02.000Z") |
Input Schema (JSON Schema)
{
"properties": {
"campaign_id": {
"description": "ID of the campaign to fetch statistics for",
"type": "number"
},
"email_sequence_number": {
"description": "Email sequence number to filter by (e.g., \"1,2,3,4\")",
"type": "string"
},
"email_status": {
"description": "Email status to filter by (e.g., \"opened\", \"clicked\", \"replied\", \"unsubscribed\", \"bounced\")",
"type": "string"
},
"limit": {
"description": "Maximum number of statistics to return",
"type": "number"
},
"offset": {
"description": "Offset for pagination",
"type": "number"
},
"sent_time_end_date": {
"description": "Filter by sent time less than this date (e.g., \"2023-10-16 10:33:02.000Z\")",
"type": "string"
},
"sent_time_start_date": {
"description": "Filter by sent time greater than this date (e.g., \"2023-10-16 10:33:02.000Z\")",
"type": "string"
}
},
"required": [
"campaign_id"
],
"type": "object"
}