This resource enables you to determine the mailing ids used for a given list, which you can then apply as scope restrictions in the various reporting and metrics APIs.
Resource: /mailings/<listid>/<fromdate>/<todate>
Determines the cycle ids used for the /metrics resource to get open, click through and other data about subscriber engagement.
Fromdate and todate are optional. When specified, do so as YYYY-MM-DD. They are always US eastern time.
- If both are omitted, the date used is yesterday.
- If one is provided, the date used is for that day
- If both are provided, the date range is used.
The cycle ID is returned along with its nominal start time. Frequency denotes the type of mailing, and the time of day indicates the time of day (e.g. 4pm-7pm) for that slot. Positive numbers represent the interval, i.e. 60 means hourly; negative numbers map to <turbo> elements in a list’s schedule. The meaning of polltime varies with the mailing frequency.
Method: GET only.
Sample response:
<?xml version="1.0" encoding="UTF-8"?>
<feedblitzapi xmlns:xlink="http://www.w3.org/1999/xlink" version="1.0">
<rsp stat="ok">
<success msg="Authorized" code="0"/>
</rsp>
<mailings>
<mailing>
<cycleid>5324267</cycleid>
<date>2016-10-06 10:30:00</date>
<frequency>-5</frequency>
<polltime>630</polltime>
<timeofday>-1</timeofday>
</mailing>
<mailing>
<cycleid>5364797</cycleid>
<date>2016-11-09 11:00:00</date>
<frequency>-5</frequency>
<polltime>660</polltime>
<timeofday>-1</timeofday>
</mailing>
</mailings>
</feedblitzapi>