Call us toll free @ 888-497-7898

email - getclicklog

Returns a list of emalis,ip,date,revenue from click logs for the specified campaign.


API Call Information
area: email
action: getclicklog

API Arguments
Argument Data Type Required Description
id integer Yes campaign id
start string No Starting position
limit integer No Number of records to return
API Url Example:
https://api.hypermail.com/api.php?apikey=YOURAPIKEYHERE&area=email&action=getclicklog&start=0&limit=10&id=1337

API Result:
XML Response JSON Response
<response>
  <records>1</records>
  <uniquerecords>1</uniquerecords>
  <log>
    <email>test@test.com</email>
    <datecreated>May 02, 2023, 06:55 pm</datecreated>
    <link><![CDATA[https://site.com/tour-ms-math?utm_source=agile&utm_medium=email&utm_campaign=2021_12_14_math_ms_teaser_cc_tx]]></link>
    <ip>15.55.82.214</ip>
    <country>US</country>
    <useragent><![CDATA[Windows 10 Google Chrome 112.0.0.0]]></useragent>
  </log>
</response>
{
    "records": "1",
    "uniquerecords": "1",
    "log": {
        "email": "test@test.com",
        "datecreated": "May 02, 2023, 06:55 pm",
        "link": "https://site.com/tour-ms-math?utm_source=agile&utm_medium=email&utm_campaign=2021_12_14_math_ms_teaser_cc_tx",
        "ip": "15.55.82.214",
        "country": "US",
        "useragent": "Windows 10 Google Chrome 112.0.0.0"
    }
}