curl --request GET \
--url https://api.example.com/api/v1/campaigns/aggregate-stats \
--header 'Authorization: Bearer <token>'{
"active_campaigns": 0,
"total_campaigns": 0,
"total_sent": 0,
"total_delivered": 0,
"total_opened": 0,
"total_replied": 0,
"total_bounced": 0,
"avg_open_rate": "0.0",
"avg_reply_rate": "0.0"
}Get aggregate stats across all user campaigns.
curl --request GET \
--url https://api.example.com/api/v1/campaigns/aggregate-stats \
--header 'Authorization: Bearer <token>'{
"active_campaigns": 0,
"total_campaigns": 0,
"total_sent": 0,
"total_delivered": 0,
"total_opened": 0,
"total_replied": 0,
"total_bounced": 0,
"avg_open_rate": "0.0",
"avg_reply_rate": "0.0"
}Documentation Index
Fetch the complete documentation index at: https://docs.bavlio.com/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Successful Response
Response model for aggregate stats across all user campaigns.