Use this endpoint to retrieve a summary report of all email campaign activities (bounce, click, unsubscribe, forward, open, and send) for a specific contact.
Click a method to view its documentation
Privileges required: contacts:read
Retrieves a summary report of all activities for the contact specified by the contactId
path parameter (REQUIRED).
GET: https://api.constantcontact.com/v2/contacts/{contactId}/tracking/reports/summary |
|||
name |
type |
default |
description |
---|---|---|---|
api_key |
query |
REQUIRED; The API key for the application |
|
contactId |
path |
Specifies the contact to retrieve an events summary for |
code |
description |
---|---|
200 |
Request was successful |
401 |
Authentication failure |
404 |
The specified campaignId was not found |
406 |
Unsupported accept header value, must be application/json |
500 |
Internal server error occurred |
property |
type(max length) |
description |
---|---|---|
bounces |
integer |
Number of bounce activities for the contact |
clicks |
integer |
Number of click activities for the contact |
contact_id |
string |
Unique ID of the contact for which the tracking summary was retrieved |
forwards |
integer |
Number of forward activities for the contact |
opens |
integer |
Number of open activities for the contact |
sends |
integer |
Number of send activities for the contact |
unsubscribes |
integer |
Number of unsubscribe activities for the contact |
{ "sends": 15, "opens": 10, "clicks": 10, "forwards": 3, "unsubscribes": 2, "bounces": 18, "contact_id": "11" }