I'm able to query Email Campaign Summary report through API using Python, however when I query an end point for Email Bounce Report, I get the "Requested Resource Not Found error". Is it something which I'm missing. Here, is the short description of my python query for Bounce report ( report_url= "https://api.cc.email/v3/emails/reports/email_reports/" + campaign_activity_id + "/tracking/bounces" header = {"Authorization":authorization_str, "Content-Type":"application/json", "cache-control":"no-cache"} r = requests.get(base_url_bounce_report, headers=header) authorization_str and campaign_activity_id are variables which holds appropriate values. Need to fill this out asap.
... View more