Return Back to API List
API Call Information
area: email
action: getopenlog
API Arguments
API Url Example:
https://api.mailclickconvert.com/api.php?apikey=YOURAPIKEYHERE&area=email&action=getopenlog&start=0&limit=10&id=1337
API Call Result:
email - getopenlog
Returns a list of emalis,ip,date,revenue from open logs for the specified campaign.
API Call Information
area: email
action: getopenlog
API Arguments
| Argument | Data Type | Required | Description |
| id | integer | Yes | campaign id |
| start | integer | No | Starting position |
| limit | integer | No | Number of records to return |
https://api.mailclickconvert.com/api.php?apikey=YOURAPIKEYHERE&area=email&action=getopenlog&start=0&limit=10&id=1337
API Call Result:
| XML Response | JSON Response |
| <response> <records>1</records> <log> <email>test@test.com</email> <datecreated>October 25, 2011, 02:33:46 pm</datecreated> <ip>213.1.32.167</ip> <country>GB</country> </log> </response> |
{
"records": "1",
"log": {
"email": "test@test.com",
"datecreated": "October 25, 2011, 02:33:46 pm",
"ip": "213.1.32.167",
"country": "GB"
}
} |