Call us toll free @ 888-497-7898

email - campaignlog

Gets the details of a campaign from the campaign log. For each chunk update. This data builds the campaign graph.


API Call Information
area: email
action: campaignlog

API Arguments
Argument Data Type Required Description
id integer Yes campaign id
API Url Example:
https://api.hypermail.com/api.php?apikey=YOURAPIKEYHERE&area=email&action=campaignlog&id=353534

API Result:
XML Response JSON Response
<response>
<log>
<logtime>May 26, 2019, 10:01:23 am</logtime>
<delivered>1</delivered>
<blocked>0</blocked>
<timedout>0</timedout>
<addressfail>0</addressfail>
<domainfail>0</domainfail>
<unknown>0</unknown>
<retryquue>0</retryquue>
</log>
<log>
<logtime>May 26, 2019, 09:59:39 am</logtime>
<delivered>48</delivered>
<blocked>1</blocked>
<timedout>1</timedout>
<addressfail>0</addressfail>
<domainfail>0</domainfail>
<unknown>0</unknown>
<retryquue>0</retryquue>
</log>
</response>
{
    "log": [
        {
            "logtime": "May 26, 2019, 10:01:23 am",
            "delivered": "1",
            "blocked": "0",
            "timedout": "0",
            "addressfail": "0",
            "domainfail": "0",
            "unknown": "0",
            "retryquue": "0"
        },
        {
            "logtime": "May 26, 2019, 09:59:39 am",
            "delivered": "48",
            "blocked": "1",
            "timedout": "1",
            "addressfail": "0",
            "domainfail": "0",
            "unknown": "0",
            "retryquue": "0"
        }
    ]
}