get_step_statistics
Retrieve step-by-step campaign statistics to analyze performance metrics for individual campaign steps within specific marketing campaigns.
Instructions
Get step statistics for a specific campaign
This retrieves statistics for individual campaign steps within a specific campaign.
Args: user_id: User ID account_id: Account ID campaign_id: Campaign ID to get step statistics for
Returns: Step-by-step statistics for the campaign
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| user_id | Yes | ||
| account_id | Yes | ||
| campaign_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"account_id": {
"type": "string"
},
"campaign_id": {
"type": "integer"
},
"user_id": {
"type": "string"
}
},
"required": [
"user_id",
"account_id",
"campaign_id"
],
"type": "object"
}