v1

latestSwagger 2.0Private2026-08-04128286690.5 KB
Email Reporting

GET an Email Campaign Activity Stats Report

Use this method to get performance tracking statistics for up to ten email campaign activities. Statistics include the total number of times contacts interacted with your campaigns and how.

For each campaign_activity_id, this method returns the campaign_id, the total counts (stats) for each type of tracked email activity, and the date and time that Constant Contact last refreshed (last_refresh_time) the stats.

When requesting statistics for multiple email campaign activities, if one or more of the campaign_activity_ids do not exist, were deleted, or do not have any stats associated with it, the campaign_activity_ids and error details display under errors. If any single specified campaign_activity_id is invalid (malformed), a 404 error response is returned for all campaign activities.

get/reports/stats/email_campaign_activities/{campaign_activity_ids}

Path parameters

campaign_activity_idsstring required

A comma-separated list of campaign_activity_ids (UUID's).

Response

Request was successful.

Example response

{
  "errors": [
    {
      "error_key": "reportingsvc.not_found.invalid_path_param.campaign_ids.",
      "error_message": "Could not find any campaign stats for all requested campaigns."
    }
  ],
  "results": [
    {
      "stats": {
        "em_bounces": 10,
        "em_clicks": 280,
        "em_clicks_all": 387,
        "em_clicks_all_computer": 123,
        "em_clicks_all_mobile": 211,
        "em_clicks_all_tablet": 85,
        "em_clicks_all_other": 4,
        "em_clicks_all_none": 2,
        "em_forwards": 39,
        "em_not_opened": 25,
        "em_opens": 220,
        "em_opens_all": 399,
        "em_opens_all_computer": 65,
        "em_opens_all_mobile": 270,
        "em_opens_all_tablet": 199,
        "em_opens_all_other": 10,
        "em_opens_all_none": 2,
        "em_optouts": 2,
        "em_sends": 308,
        "em_abuse": 1,
        "em_bounces_blocked": 1,
        "em_bounces_mailbox_full": 2,
        "em_bounces_nonexistent_address": 3,
        "em_bounces_other": 2,
        "em_bounces_suspended": 1,
        "em_bounces_undeliverable": 19,
        "em_bounces_vacation": 2
      }
    }
  ]
}