GET api/v1/DailyStatistics/EmailStats?from={from}&to={to}

Returns a list of emailstats from a daterange

Request Information

URI Parameters

NameDescriptionTypeAdditional information
from

Date filter from - only date is used and is included

date

None.

to

Date filter to - only date is used and is included

date

None.

Body Parameters

None.

Response Information

Resource Description

Collection of EmailStatWithDate
NameDescriptionTypeAdditional information
Date

string

None.

Type

string

None.

Folder

string

None.

Sent

integer

None.

Delivered

integer

None.

SoftBounces

integer

None.

HardBounces

integer

None.

Complaints

integer

None.

OpenedTotal

integer

None.

OpenedUnique

integer

None.

ClickedTotal

integer

None.

ClickedUnique

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Date": "sample string 1",
    "Type": "sample string 2",
    "Folder": "sample string 3",
    "Sent": 4,
    "Delivered": 5,
    "SoftBounces": 6,
    "HardBounces": 7,
    "Complaints": 8,
    "OpenedTotal": 9,
    "OpenedUnique": 10,
    "ClickedTotal": 11,
    "ClickedUnique": 12
  },
  {
    "Date": "sample string 1",
    "Type": "sample string 2",
    "Folder": "sample string 3",
    "Sent": 4,
    "Delivered": 5,
    "SoftBounces": 6,
    "HardBounces": 7,
    "Complaints": 8,
    "OpenedTotal": 9,
    "OpenedUnique": 10,
    "ClickedTotal": 11,
    "ClickedUnique": 12
  }
]