smartlead_get_webhooks_publish_summary
Retrieve a summary of webhook publish events for a specific email campaign within a defined time period to monitor delivery and engagement data.
Instructions
Get a summary of webhook publish events (Private Beta feature).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
campaign_id | Yes | ID of the campaign to get webhook publish summary for | |
fromTime | No | Start date/time in ISO 8601 format (e.g. 2025-03-21T00:00:00Z) | |
toTime | No | End date/time in ISO 8601 format (e.g. 2025-04-04T23:59:59Z) |
Input Schema (JSON Schema)
{
"properties": {
"campaign_id": {
"description": "ID of the campaign to get webhook publish summary for",
"type": "string"
},
"fromTime": {
"description": "Start date/time in ISO 8601 format (e.g. 2025-03-21T00:00:00Z)",
"type": "string"
},
"toTime": {
"description": "End date/time in ISO 8601 format (e.g. 2025-04-04T23:59:59Z)",
"type": "string"
}
},
"required": [
"campaign_id"
],
"type": "object"
}