Gets the SMTP open log from a single email send API/quick send or the SMTP API
| Argument | Data Type | Required | Description |
| id | integer | Yes | The id of email via send single api/quick send or SMTP API |
| start | integer | No | Starting position |
| limit | integer | No | Number of records to return |
| XML Response | JSON Response |
| <response> <records>1</records> <log> <datecreated>June 15, 2025, 9:51 pm</datecreated> <ip>104.28.104.18</ip> <country>US</country> <useragent><![CDATA[Unknown Mozilla Compatible]]></useragent> <useragentfull><![CDATA[Mozilla/5.0]]></useragentfull> </log> </response> |
{
"records": "1",
"log": {
"datecreated": "June 15, 2025, 9:51 pm",
"ip": "104.28.104.18",
"country": "US",
"useragent": "Unknown Mozilla Compatible",
"useragentfull": "Mozilla/5.0"
}
} |