Get platforms

Post /statistics/platforms/{type}

URL parameters:

Name Description Type Mandatory
/ Get all detail whatever the device String No
/computers Get detail of computers String No
/computers/total Get total of computers String No
/mobiles Get detail of mobile String No
/mobiles/total Get total of mobile String No

Parameters:

Name Description Type Mandatory
dateBegin Date begin on YYYY-MM-ddThh:mm:ss format Int No
dateEnd Date end on YYYY-MM-ddThh:mm:ss format Int No
froms Array of Senders email Array No
apiKeys Array of api keys Array No
tags Array of tags Array No

Response:

Name Description Type
date

An array with information about email opens return on date / First day of the month

Name Description Type
open Number of open Int
operatingSystem OS name String
deviceType "computer" or "mobile" String
String
Programming language:

Request exemple:

1
2
3
4
5
{
    "dateBegin": 1454545657,
    "dateEnd": 1564564564
}

Response exemple:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
    "1438387200": [
        {
            "open": 16,
            "operatingSystem": "LINUX",
            "deviceType": "Computer"
        },
        {
            "open": 3,
            "operatingSystem": "MAC_OS_X",
            "deviceType": "Computer"
        }
    ],
    "1441065600": [
        {
            "open": 18,
            "operatingSystem": "LINUX",
            "deviceType": "Computer"
        },
        {
            "open": 6,
            "operatingSystem": "WINDOWS_7",
            "deviceType": "Computer"
        },
        {
            "open": 1,
            "operatingSystem": "PROXY",
            "deviceType": "Unknown"
        }
    ],
    "1443657600": [
        {
            "open": 11,
            "operatingSystem": "LINUX",
            "deviceType": "Computer"
        }
    ]
}