Get email platforms

Post /statistics/emailplatforms/{type}

URL parameters:

Name Description Type Mandatory
/ All technologies used to read the email String No
/webmails Filter by webmail String No
/webmails/total Total per webmails String No
/applications Filter by application String No
/applications/total Total per applications 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
name Application's or webmail's name String
type Type (application or webmail) String
String
Programming language:

Request exemple:

1
2
3
4
5
{
    "dateBegin": "2019-01-20T09:00:00",
    "dateEnd": "2019-01-21T22:59:59"
}

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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
    "1438387200": [
        {
            "open": 16,
            "name": "CHROME 43.0.2357.130",
            "type": "application"
        }
    ],
    "1441065600": [
        {
            "open": 1,
            "name": "FIREFOX11 11.0",
            "type": "webmail"
        },
        {
            "open": 10,
            "name": "CHROME 44.0.2403.89",
            "type": "application"
        },
        {
            "open": 8,
            "name": "CHROME 45.0.2454.85",
            "type": "application"
        },
        {
            "open": 4,
            "name": "OUTLOOK2010 14",
            "type": "application"
        },
        {
            "open": 2,
            "name": "CHROME 42.0.2311.90",
            "type": "application"
        }
    ],
    "1443657600": [
        {
            "open": 6,
            "name": "CHROME 45.0.2454.85",
            "type": "application"
        },
        {
            "open": 4,
            "name": "CHROME 45.0.2454.101",
            "type": "application"
        },
        {
            "open": 1,
            "name": "THUNDERBIRD3 38.2.0",
            "type": "application"
        }
    ]
}