GET https://webapi.mymarketing.co.il/api/campaignreports/{id}/emailactivity?FromDate={FromDate}&ToDate={ToDate}&Page={Page}&Limit={Limit}
Get all contacts' activity on a specific campaign. You can limit the search to specific time (by default, the search will be for campaigns that were updated in the last 3 months. Please note: if the campaign you are searching for wasn't sent in the given dates - you'll get an error)
Request Information
URI Parameters
Name
Description
Type
Additional information
id
Campaign id. Can be found using the endpoint "Get account's email campaigns..." or in the UI(go to Emails->Emails Lists->click on the campaign's preview -> you'll find the id int the URL)
integer
Required
from_date
The start date the campaign was last updated
date
to_date
The end date the campaign was last updated
date
page
Get a specific page (number of pages is limited)
integer
Range: inclusive between 1 and 2147483647
limit
Limit the number of items you get in the results. (Removing the "limit" will, by default, display only 20 records)
integer
Range: inclusive between 1 and 100
Body Parameters
None.
Response Information
Resource Description
Name
Description
Type
Additional information
total_items
Total number of opened emails
integer
Response Formats
application/json, text/json
Sample:
{ "total_items": 1, "emails": [ { "campaign_id": 1, "email_address": "sample string 2", "first_name": "sample string 3", "last_name": "sample string 4", "open_date": "2016-12-24T14:12:12", "total_opens": 6 }, { "campaign_id": 1, "email_address": "sample string 2", "first_name": "sample string 3", "last_name": "sample string 4", "open_date": "2016-12-24T14:12:12", "total_opens": 6 } ] }
application/xml, text/xml
Sample:
<ApiEmailActivityReportsList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ActiveTrail.RESTfulApi.Models.CampaignReport"> <emails> <ApiEmailActivityReports> <campaign_id>1</campaign_id> <email_address>sample string 2</email_address> <first_name>sample string 3</first_name> <last_name>sample string 4</last_name> <open_date>2016-12-24T14:12:12</open_date> <total_opens>6</total_opens> </ApiEmailActivityReports> <ApiEmailActivityReports> <campaign_id>1</campaign_id> <email_address>sample string 2</email_address> <first_name>sample string 3</first_name> <last_name>sample string 4</last_name> <open_date>2016-12-24T14:12:12</open_date> <total_opens>6</total_opens> </ApiEmailActivityReports> </emails> <total_items>1</total_items> </ApiEmailActivityReportsList>