Get localisations
Post /statistics/localisations
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 |
---|---|---|
open | Number of open | Int |
click | Number of click | Int |
opener | Number of opener | Int |
clicker | Number of clicker | Int |
country | Country's name | String |
city | City's name | String |
latitude | Float | |
longitude | Float |
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 | [ { "open" : 3, "click" : 10, "opener" : 0, "clicker" : 3, "country" : "France" , "city" : "Lille" , "latitude" : 50.6310675, "longitude" : 3.0471604 }, { "open" : 1, "click" : 5, "opener" : 0, "clicker" : 1, "country" : "France" , "city" : "Paris" , "latitude" : 48.8588589, "longitude" : 2.3475569 } ] |