Call us toll-free @ 888-497-7898

API Call Information

area: email

action: getallopens

API Arguments

Argument Data Type Required Description
datestart string No Start date takes a date or a unixtimestamp
dateend string No End date takes a date or a unixtimestamp
campaign integer No Filter by a campaign id
unique boolean either 1 or 0 No If this is set only unique records will be shown
nolimit boolean either 1 or 0 No if this is set no limit on number of records
start integer No Starting position
limit integer No Number of records to return
showcustomfields boolean either 1 or 0 No Returns all the custom columns in the list. Faster if turned off. Default is enabled.

API URL Example

https://api.hypermail.com/api.php?apikey=YOURAPIKEYHERE&area=email&action=getallopens

API Response

XML Response

<response>
<log>
<id>2275691</id>
<email>test@test.com</email>
<date>April 04, 2020, 12:00 am</date>
<ip>109.222.82.232</ip>
<campaignid>219803</campaignid>
</log>
</response>

JSON Response

{
    "log": {
        "id": "2275691",
        "email": "test@test.com",
        "date": "April 04, 2020, 12:00 am",
        "ip": "109.222.82.232",
        "campaignid": "219803"
    }
}