smartlead_get_campaign_lead_statistics
Retrieve detailed lead statistics for email marketing campaigns, including engagement metrics and filtering options for campaign analysis.
Instructions
Fetch lead statistics for a campaign.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
campaign_id | Yes | ID of the campaign to fetch lead statistics for | |
created_at_gt | No | Filter by leads created after this date (YYYY-MM-DD format) | |
event_time_gt | No | Filter by events after this date (YYYY-MM-DD format) | |
limit | No | Maximum number of leads to return (max 100) | |
offset | No | Offset for pagination |
Input Schema (JSON Schema)
{
"properties": {
"campaign_id": {
"description": "ID of the campaign to fetch lead statistics for",
"type": "number"
},
"created_at_gt": {
"description": "Filter by leads created after this date (YYYY-MM-DD format)",
"type": "string"
},
"event_time_gt": {
"description": "Filter by events after this date (YYYY-MM-DD format)",
"type": "string"
},
"limit": {
"description": "Maximum number of leads to return (max 100)",
"type": "number"
},
"offset": {
"description": "Offset for pagination",
"type": "number"
}
},
"required": [
"campaign_id"
],
"type": "object"
}