Link statistics

The link click statistics provide statistics about the link clicks in the message bodies of a campaign. They can be used to provide information like:

  • Date of the last clicked link;
  • Total number of link clicks in a campaign;
  • The number of unique link clicks in a campaign;

This topic explains how to obtain these statistics and how to work with them in order to visualize specific information.

Generating link statistics

The generation of the link statistics objects is handled by Sitefinity CMS. Whenever a subscriber clicks a link in the message body of a campaign, a LinkClickStat object is created and stored in the data base.

The LinkClickStat object contains information regarding the following:

  • The id of the campaign to which the clicked link belongs;
  • The date on which the link was clicked;
  • The id of the subscriber, who clicked the link;
  • The URL of the link;

Querying link click statistics

To query all of the link click statistics for a specific campaign, you must use the NewslettersManager class. The following code gets the link click statistics for the campaign with the specified ID through the Native API.


First, you initialize the NewslettersManager. Then, you call GetLinkClickStats method to retrieve all link click statistics and, finally, you filter the statistics based on the CampaignId property.

In order to obtain more specific information, you can additionally manipulate the result collection by using the DateTimeClick,SubscriberIdUrl properties of the LinkClickStat object.

As an addition, the Native API exposes methods that upon calling automatically calculate one of the following statistics for you:

  • The Date of the last link that has been clicked in the specified campaign;
  • The total number of clicks in the specified campaign;
  • The total number of unique clicks in the specified campaign;
To obtain these statistics, you must call the respective methods of the NewsletterManager class:


Want to learn more?

Sign up for our free beginner training. Boost your credentials through advanced courses and certification.
Register for Sitefinity training and certification.

Was this article helpful?

Next article

Open statistics