How to get active groups list / with stats

// active groups list with stats for timeframe last 90 days

// GET /aggregated/summary/groups?timeframe=last90&limit=100&offset=0&sortby=spiderhitscount&sortdirection=desc&status=active

/*

OUTPUT

{

 "count": 43,

 "limit": 100,

 "result": [

   {

     "entityId": "1234",

     "activityDay": "20151221162944",

     "lastHitDate": "20151221172737",

     "totalClicks": 129302,

     "uniqueClicks": 4,

     "spiderHitsCount": 129296,

     "entityData": {

       "groupId": 1234,

       "groupName": "Some group name",

       "notes": "",

       "linksCount": 7,

       "pixelsCount": 1,

       "creationDate": "20100702104535",

       "tags": [],

       "isPrivateShared": true

     }

   },

   .....

   ]

}

*/

Have more questions? Submit a request

0 Comments

Article is closed for comments.