GET newslettercampaign/getstatistics?friendlyurl={friendlyurl}
Gets the statistics.
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| friendlyUrl | The friendly URL. |
Define this parameter in the request URI. |
Response Information
Response body formats
application/json, text/json
Sample:
{
"TotalRecipients": 1,
"TotalOpens": 2,
"TotalClicks": 3,
"TotalBounces": 4,
"TotalUnsubscribed": 5,
"DeliveredOn": "2025-11-03T17:50:47.2713323+00:00",
"Name": "sample string 6",
"SubjectLine": "sample string 7",
"FromName": "sample string 8",
"FromEmail": "sample string 9"
}
application/xml, text/xml
Sample:
<NewsletterCampaignStatisticModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Webi.Api2.Models"> <DeliveredOn>2025-11-03T17:50:47.2713323+00:00</DeliveredOn> <FromEmail>sample string 9</FromEmail> <FromName>sample string 8</FromName> <Name>sample string 6</Name> <SubjectLine>sample string 7</SubjectLine> <TotalBounces>4</TotalBounces> <TotalClicks>3</TotalClicks> <TotalOpens>2</TotalOpens> <TotalRecipients>1</TotalRecipients> <TotalUnsubscribed>5</TotalUnsubscribed> </NewsletterCampaignStatisticModel>