Reach: Campaigns
Get campaign performance
Get the performance of a campaign: delivery, opens, clicks and unsubscribes, with the matching rates.
Every count is unique contacts rather than raw events, so a contact who opens the same email five times is counted once.
get/api/reach/v1/profiles/{profileUuid}/campaigns/{campaignUuid}/statistics
Path parameters
profileUuidstring required
Example:550e8400-e09b-41d4-a716-400055000000
Profile uuid parameter
campaignUuidstring required
Example:550e8400-e09b-41d4-a716-400055000000
Campaign uuid parameter
Response
Success response
Example response
{
"total_sent": 100,
"estimated_total_recipients": 900,
"processed_count": 100,
"delivered_count": 90,
"dropped_count": 2,
"bounced_count": 8,
"soft_bounced_count": 3,
"opened_count": 80,
"clicked_count": 10,
"unsubscribed_count": 5,
"open_rate": 42.5,
"click_rate": 10,
"click_to_open_rate": 23.5,
"unsubscribe_rate": 1.5
}