Use this endpoint to retrieve a list of email addresses that an email campaign was sent to.
Click a method to view its documentation
Privileges required: contacts:read
Retrieve a list of contacts that the email campaign specified by the campaignId
path parameter (REQUIRED). Use the created_since
query parameter to retrieve only the email addresses that were sent the campaign on or after the date/time specified. This is useful for sync'ing tracking data across applications.
NOTE: Tracking information is only available for SENT email campaigns.
GET: https://api.constantcontact.com/v2/emailmarketing/campaigns/{campaignId}/tracking/sends |
|||
name |
type |
default |
description |
---|---|---|---|
api_key |
query |
REQUIRED; The API key for the application |
|
campaignId |
path |
Specifies the email campaign to retrieve the send activities for |
|
created_since |
query |
Use to retrieve only contacts who were sent the email campaign on or after the date/time specified in ISO-8601 format. |
|
limit |
query |
500 |
Specifies the number of results displayed per page of output, from 1 - 500, default = 500. See Paginated Output for more information on using |
code |
description |
---|---|
200 |
Request was successful |
401 |
Authentication failure |
404 |
Campaign ID not found. |
406 |
Unsupported accept header value, must be application/json |
500 |
Internal server error occurred |
property |
type(max length) |
description |
---|---|---|
activity_type |
string |
Campaign activity type, always EMAIL_SEND |
campaign_id |
string |
Unique ID of the campaign |
contact_id |
string |
Unique ID of the contact |
email_address |
string |
Email address the campaign was sent to |
send_date |
string |
Date the email campaign was sent |
{ "meta": { "pagination": { "next_link": "/v2/emailmarketing/campaigns/1100394165287/tracking/sends?next=c3RhcnRBdD0zJmxpbWl0PTI" } }, "results": [ { "activity_type": "EMAIL_SEND", "campaign_id": "1100394165287", "contact_id": "21", "email_address": "abc@example.com", "send_date": "2012-12-06T13:06:14.762Z" }, { "activity_type": "EMAIL_SEND", "campaign_id": "1100394165287", "contact_id": "19", "email_address": "def@example.com", "send_date": "2012-12-06T13:06:14.653Z" } ] }