Variable | Type | Description |
---|---|---|
campaign_id | string|int | The ID of the campaign for which to get the clicked links |
Parameter | Description |
---|---|
array | Array containing the clicked links of the campaign. Array with stats (link, number of clicks, last click time). |
[ { "url": "the_first_clicked_link", "last_click_date": "2018-08-09 15:20:48", "no_clicks": "209" }, { "url": "the_second_clicked_link", "last_click_date": "2018-08-08 12:08:53", "no_clicks": "130" } ]
Code | Message | Description |
---|---|---|
407 | Missing required param campaign_id | campaign_id param is required |
131 | No such campaign with ID: %s. | Invalid access to campaign_id |
{ "err": true, "message": "Missing required param campaign_id", "code": 407 }
{ "err": true, "message": "No such campaign with ID: 99554.", "code": 131 }