POST GET exports/emailClicks
Get clicks data across email campaigns. Date range cannot span more than 90 days.
* required
Parameters
Name | Type | Description |
---|---|---|
startDate * | datetime | Clicks after this date |
endDate * | datetime | Clicks before this date |
fields | string |
Comma-separated list of fields to return. Available fields: id, emailID, parentEmailID, dateClicked, link, contactID, email
id, emailID, dateClicked, link, contactID, email
|
Response Data
Name | Type | Description |
---|---|---|
jobID | integer | ID of export job. Use to check the status of the job at /exports/jobStatus |
Permissions
Method requires the Client admin permission
Example Calls
Clicks in past 30 days
GET
/exports/emailClicks?startDate=2024-10-22&endDate=2024-11-21
cURL
Copy
Response Data
Report Columns
Name | Type | Description |
---|---|---|
id | integer | Unique ID of click record |
emailID | integer | ID of email record |
parentEmailID | integer | ID of parent email record |
dateClicked | datetime | Date click was logged |
link | string | Link that was clicked |
contactID | integer | ID of contact record |
string | Email address of contact record |
Sample Report
"id" "emailID" "dateClicked" "link" "contactID" "email" "5132653" "123456" "2014-04-29 14:17:10.91" "http://www.emfluence.com" "23680470" "john.doe@example.com" "5132654" "123456" "2014-04-29 14:17:16.77" "http://www.google.com" "23680470" "jane.doe@example.com"
API Console
The console uses production data, so BE CAREFUL!
GET
exports/emailClicks