
GET https://webapi.mymarketing.co.il/api/smscampaignreport/{id}/Clickers?LinkId={LinkId}&SendType={SendType}&SearchTerm={SearchTerm}&RowsAffected={RowsAffected}&PreviousRowCount={PreviousRowCount}&FromDate={FromDate}&ToDate={ToDate}&Page={Page}&Limit={Limit}
Get all the contacts that clicked on a link sms (can be filtered by specific link). If you didn't send the sms to a group but chose the "add numbers manually" function - you'll get the amount of clickers but not the mobile numbers. You can also filter by dates. (the search for the campaign will be made, by default, in the last 3 months. If the campaign wasnt sent in the given range - you will get no information)
Request Information
URI Parameters
Name
Description
Type
Additional information
SMS campaign id. Can be found using the endpoint "Get account's sms campaigns.." or in the UI (go to Mobile -> SMS -> SMS list -> inspect/F12)
Required
The id of a specific link. can be found in the UI (find the campaign in "Mobile" -> "SMS" -> "SMS report" -> go to clickers reports > you wiil see "link="
Filter by campaign's type. Default will get all the campaigns. Types: All types of campaigns - 0 , Regular campaign - 1 , Test campaigns - 2 , Transactional (Operational) messages - 3
Search by campaign name/partial name
irrelevant - should be deleted
irrelevant - should be deleted
The start date the campaign was last updated
The end date the campaign was last updated
Get a specific page (number of pages is limited)
Range: inclusive between 1 and 2147483647
Limit the number of items you get in the results. (Removing the "limit" will, by default, display only 20 records)
Range: inclusive between 1 and 100
Body Parameters
None.
Response Information
Resource Description
Name
Description
Type
Additional information
Response Formats
application/json, text/json
{ "clickers": [ { "contact_id": 1, "sms": "sample string 1", "clicks_count": 2 }, { "contact_id": 1, "sms": "sample string 1", "clicks_count": 2 } ], "count": 1 }
application/xml, text/xml
<ApiReportSmsCampaignLinkClickerList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ActiveTrail.RESTfulApi.Models.SmsCampaignReport"> <clickers> <ApiReportSmsCampaignLinkClicker> <clicks_count>2</clicks_count> <contact_id>1</contact_id> <sms>sample string 1</sms> </ApiReportSmsCampaignLinkClicker> <ApiReportSmsCampaignLinkClicker> <clicks_count>2</clicks_count> <contact_id>1</contact_id> <sms>sample string 1</sms> </ApiReportSmsCampaignLinkClicker> </clickers> <count>1</count> </ApiReportSmsCampaignLinkClickerList>