Get message detail
GET /statistics/message/{messageId}
Parameters:
Name | Description | Type | Mandatory |
---|---|---|---|
messageId | Message Id | String | Yes |
Response:
Name | Description | Type | ||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
messageId | Message Id | String | ||||||||||||||||||
msg |
|
Struct | ||||||||||||||||||
open | Number of open | Int | ||||||||||||||||||
click | Number of click | Int | ||||||||||||||||||
openDetails |
|
Array | ||||||||||||||||||
clickDetails |
|
Array |
Programming language:
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 | { "messageId" : "56546ht54h6t468787665408" , "msg" : { "receivedAt" : 1443435712, "from" : "from@example.com" , "email" : "email@example.com" , "subject" : "test" , "size" : 57 }, "open" : 2, "click" : 0, "openDetails" : [ { "userAgent" : { "ip" : "00.00.000.000" , "latitude" : 47.6801, "longitude" : -122.120605, "country" : "United States" , "region" : "WA" , "city" : "Redmond" , "postcode" : "98052" , "operatingSystem" : "LINUX" , "language" : "fr-fr,fr,en" , "browser" : "CHROME 45.0.2454.85" , "webmail" : "Unknown" , "deviceType" : "Computer" }, "recipient" : { "address" : "recipient1@example.com" } }, { "userAgent" : { "ip" : "00.00.000.000" , "latitude" : 47.6801, "longitude" : -122.120605, "country" : "United States" , "region" : "WA" , "city" : "Redmond" , "postcode" : "98052" , "operatingSystem" : "LINUX" , "language" : "fr-fr,fr,en" , "browser" : "CHROME 45.0.2454.85" , "webmail" : "Unknown" , "deviceType" : "Computer" }, "recipient" : { "address" : "recipient2@example.com" } } ], "clickDetails" : [] } |