Method :POST
URL: https://apiv1.publicators.com/api/Reports/GetCampaignStatisticByCampaignId
Get campaign statistic by ID
Request Information
URI Parameters
None.
Body Parameters
Json format: ReportGetCampaignByIdBindingeModel
ReportGetCampaignByIdBindingeModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Auth |
Token |
AuthorizationTokenBindingModel |
Required |
| ID |
Campaign ID |
integer |
Required |
| IsReturnUniqueData |
(Optional): Return unique emails with the first timestamp that event occurred for each email |
boolean |
None. |
| FilterFromCreated |
(Optional): Return all records from timestamp created: yyyy/mm/dd hh:mm:ss |
date |
None. |
Request Formats
application/json, text/json
Sample:
{
"Auth": {
"Token": "89498bdf-7801-4b6f-8d0e-eacdb3cab19a"
},
"ID": 1,
"IsReturnUniqueData": true,
"FilterFromCreated": "2026/07/26 03:00:28"
}
Response Information
Resource Description
Json format: ReportGetCampaignStatisticViewModel
ReportGetCampaignStatisticViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ID |
Campaign ID |
integer |
None. |
| SentDate |
Campaign sent date |
date |
None. |
| TotalMailsSent |
Total of mails sent |
integer |
None. |
| TotalBounces |
Total of unique bounces |
integer |
None. |
| TotalClicks |
Total click |
integer |
None. |
| TotalUniqueClicks |
Total unique click |
integer |
None. |
| TotalForwards |
Total forwards |
integer |
None. |
| TotalPurchases |
Total purchases transactions. Relevent to customers who deploy Publicators wins module. |
integer |
None. |
| TotalOpened |
Total opened. |
integer |
None. |
| TotalUniqueOpened |
Total unique opened. |
integer |
None. |
| TotalOpenedFromSmartPhone |
Total opened from smart phone |
integer |
None. |
| TotalUniqueUnsubscribed |
Total unique unsubscribed |
integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"ID": 1,
"SentDate": "2026/07/26 03:00:28",
"TotalMailsSent": 3,
"TotalBounces": 4,
"TotalClicks": 5,
"TotalUniqueClicks": 6,
"TotalForwards": 7,
"TotalPurchases": 8,
"TotalOpened": 9,
"TotalUniqueOpened": 10,
"TotalOpenedFromSmartPhone": 11,
"TotalUniqueUnsubscribed": 12
}