#import <ContactTrackingService.h>
Performs all actions pertaining to Contact Tracking
Please note that activity data is available for 180 days from the time a campaign is sent.
+ (HttpResponse *) getActivitesSortedByEmailCampaignWithAccessToken: | (NSString *) | accessToken | |
contactId: | (NSString *) | contactId | |
Get all the activites of the user sorted by email campaign
NSString | *accessToken - Constant Contact OAuth2 access token |
NSString | *contactId - id of the contact to which we want to see the tracking service |
+ (HttpResponse *) getAllContactActivitesWithAccessToken: | (NSString *) | accessToken | |
contactId: | (NSString *) | contactId | |
creationDate: | (NSDate *) | date | |
andALimitOf: | (int) | limit | |
Get all e activites of the user
NSString | *accessToken - Constant Contact OAuth2 access token |
NSString | *contactId - id of the contact to which we want to see the tracking service |
int | limit - (optional) the number of elements returned on one page; |
NSDate | *date - (optional) if given only activites after the creation date will be returned, sending the date parameter will invalidate the limit parameter; |
+ (HttpResponse *) getBouncesWithAccessToken: | (NSString *) | accessToken | |
contactId: | (NSString *) | contactId | |
andALimitOf: | (int) | limit | |
Get bounces for a given contact
NSString | *accessToken - Constant Contact OAuth2 access token |
NSString | *contactId - id of the contact to which we want to see the tracking service |
int | limit - (optional) query param representing the number of items returned on a page |
+ (HttpResponse *) getClicksWithAccessToken: | (NSString *) | accessToken | |
contactId: | (NSString *) | contactId | |
creationDate: | (NSDate *) | date | |
andALimitOf: | (int) | limit | |
Get clicks for a given contact
NSString | *accessToken - Constant Contact OAuth2 access token |
NSString | *contactId - id of the contact to which we want to see the tracking service |
NSDate | *date - (optional) if given only activites after the creation date will be returned, sending the date parameter will invalidate the limit parameter; |
int | limit - (optional) query param representing the number of items returned on a page; |
+ (HttpResponse *) getForwardsWithAccessToken: | (NSString *) | accessToken | |
contactId: | (NSString *) | contactId | |
creationDate: | (NSDate *) | date | |
andALimitOf: | (int) | limit | |
Get forwards for a given contact
NSString | *accessToken - Constant Contact OAuth2 access token |
NSString | *contactId - id of the contact to which we want to see the tracking service |
NSDate | *date - (optional) if given only activites after the creation date will be returned, sending the date parameter will invalidate the limit parameter; |
int | limit - (optional) query param representing the number of items returned on a page; |
+ (HttpResponse *) getOpensWithAccessToken: | (NSString *) | accessToken | |
contactId: | (NSString *) | contactId | |
creationDate: | (NSDate *) | date | |
andALimitOf: | (int) | limit | |
Get opens for a given contact
NSString | *accessToken - Constant Contact OAuth2 access token |
NSString | *contactId - id of the contact to which we want to see the tracking service |
NSDate | *date - (optional) if given only activites after the creation date will be returned, sending the date parameter will invalidate the limit parameter; |
int | limit - (optional) query param representing the number of items returned on a page; |
+ (HttpResponse *) getSendsWithAccessToken: | (NSString *) | accessToken | |
contactId: | (NSString *) | contactId | |
creationDate: | (NSDate *) | date | |
andALimitOf: | (int) | limit | |
Get sends for a given contact
NSString | *accessToken - Constant Contact OAuth2 access token |
NSString | *contactId - id of the contact to which we want to see the tracking service |
NSDate | *date - (optional) if given only activites after the creation date will be returned, sending the date parameter will invalidate the limit parameter; |
int | limit - (optional) query param representing the number of items returned on a page; |
+ (HttpResponse *) getSummaryWithAccessToken: | (NSString *) | accessToken | |
contactId: | (NSString *) | contactId | |
Get a summary of reporting data for a given contact
NSString | *accessToken - Constant Contact OAuth2 access token |
NSString | *contactId - id of the contact to which we want to see the tracking service |
+ (HttpResponse *) getUnsubscribesWithAccessToken: | (NSString *) | accessToken | |
contactId: | (NSString *) | contactId | |
creationDate: | (NSDate *) | date | |
andALimitOf: | (int) | limit | |
Get opt outs for a given contact
NSString | *accessToken - Constant Contact OAuth2 access token |
NSString | *contactId - id of the contact to which we want to see the tracking service |
NSDate | *date - (optional) if given only activites after the creation date will be returned, sending the date parameter will invalidate the limit parameter; |
int | limit - (optional) query param representing the number of items returned on a page; |