For more information on using API

GET http://webapi.mymarketing.co.il/api/Pushcampaignreport/{id}/Clickers?LinkId={LinkId}&SendType={SendType}&SearchTerm={SearchTerm}&FromDate={FromDate}&ToDate={ToDate}&Page={Page}&Limit={Limit}

Request Information

URI Parameters

Name

Description

Type

Additional information

id

string

Required

link_id

globally unique identifier
send_type

integer
search_term

string
from_date

date
to_date

date
page

integer

Range: inclusive between 1 and 2147483647

limit

integer

Range: inclusive between 1 and 100

Body Parameters

None.

Response Information

Resource Description

ApiPushCampaignClickersList

Name

Description

Type

Additional information

totalitems

integer
count

integer
linksClickers

Collection of ApiPushCampaignClickers

Response Formats

application/json, text/json

Sample:
{
  "totalitems": 2,
  "count": 2,
  "linksClickers": [
    {
      "crmUserId": 1,
      "mobileNumber": "sample string 2",
      "totalClicks": 3
    },
    {
      "crmUserId": 1,
      "mobileNumber": "sample string 2",
      "totalClicks": 3
    }
  ]
}

application/xml, text/xml

Sample:
<ApiPushCampaignClickersList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ActiveTrail.BusinessLogic.Domain.PushNotification.PushCampaignReport">
  <Count>2</Count>
  <TotalItems>2</TotalItems>
  <linksClickers>
    <ApiPushCampaignClickers>
      <crmUserId>1</crmUserId>
      <mobileNumber>sample string 2</mobileNumber>
      <totalClicks>3</totalClicks>
    </ApiPushCampaignClickers>
    <ApiPushCampaignClickers>
      <crmUserId>1</crmUserId>
      <mobileNumber>sample string 2</mobileNumber>
      <totalClicks>3</totalClicks>
    </ApiPushCampaignClickers>
  </linksClickers>
</ApiPushCampaignClickersList>