smartlead_get_campaign_mailbox_statistics
Retrieve detailed mailbox performance metrics for email campaigns, including delivery rates and engagement data, to monitor campaign effectiveness and optimize email marketing strategies.
Instructions
Fetch mailbox statistics for a campaign.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
campaign_id | Yes | ID of the campaign to fetch mailbox statistics for | |
client_id | No | Client ID if the campaign is client-specific | |
end_date | No | End date (must be used with start_date) | |
limit | No | Maximum number of results to return (min 1, max 20) | |
offset | No | Offset for pagination | |
start_date | No | Start date (must be used with end_date) | |
timezone | No | Timezone for the data (e.g., "America/Los_Angeles") |
Input Schema (JSON Schema)
{
"properties": {
"campaign_id": {
"description": "ID of the campaign to fetch mailbox statistics for",
"type": "number"
},
"client_id": {
"description": "Client ID if the campaign is client-specific",
"type": "string"
},
"end_date": {
"description": "End date (must be used with start_date)",
"type": "string"
},
"limit": {
"description": "Maximum number of results to return (min 1, max 20)",
"type": "number"
},
"offset": {
"description": "Offset for pagination",
"type": "number"
},
"start_date": {
"description": "Start date (must be used with end_date)",
"type": "string"
},
"timezone": {
"description": "Timezone for the data (e.g., \"America/Los_Angeles\")",
"type": "string"
}
},
"required": [
"campaign_id"
],
"type": "object"
}