For more information on using API

GET https://webapi.mymarketing.co.il/api/automationreports/{id}/automationpushnotificationcampaignstatistic

Get Push Notification campaigns statistics for a specific automation.

Request Information

URI Parameters

Name

Description

Type

Additional information

id

Automation id. Can be found using the endpoint "Get account's automations" or in the UI (go to Automations->Automations Lists->click on the automation's reports -> you'll find the id int the URL)

integer

Required

Body Parameters

None.

Response Information

Resource Description

ApiPushCampaignReportInfoList

Name

Description

Type

Additional information

totalitems

integer
count

integer
campaignreportslist

Response Formats

application/json, text/json

Sample:
{
  "totalitems": 2,
  "count": 2,
  "campaignreportslist": [
    {
      "campaignid": "1e3816b2-bc0d-4b18-8177-748fb5d5fd19",
      "campaignname": "sample string 2",
      "sentdate": "2016-12-24T14:12:12",
      "senttype": 1,
      "totalclicks": 3,
      "clickers": 4,
      "unsubscribe": 5,
      "failed": 6,
      "failedPercentage": 7.1,
      "totalsent": 8,
      "opens": 9,
      "openedPercentage": 10.1,
      "totalDevices": 11
    },
    {
      "campaignid": "1e3816b2-bc0d-4b18-8177-748fb5d5fd19",
      "campaignname": "sample string 2",
      "sentdate": "2016-12-24T14:12:12",
      "senttype": 1,
      "totalclicks": 3,
      "clickers": 4,
      "unsubscribe": 5,
      "failed": 6,
      "failedPercentage": 7.1,
      "totalsent": 8,
      "opens": 9,
      "openedPercentage": 10.1,
      "totalDevices": 11
    }
  ]
}

application/xml, text/xml

Sample:
<ApiPushCampaignReportInfoList 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>
  <pushCampaignReportsInfo>
    <ApiPushCampaignReportInfo>
      <campaignid>1e3816b2-bc0d-4b18-8177-748fb5d5fd19</campaignid>
      <campaignname>sample string 2</campaignname>
      <clickers>4</clickers>
      <failed>6</failed>
      <failedPercentage>7.1</failedPercentage>
      <openedPercentage>10.1</openedPercentage>
      <opens>9</opens>
      <sentdate>2016-12-24T14:12:12</sentdate>
      <senttype>Regular</senttype>
      <totalDevices>11</totalDevices>
      <totalclicks>3</totalclicks>
      <totalsent>8</totalsent>
      <unsubscribe>5</unsubscribe>
    </ApiPushCampaignReportInfo>
    <ApiPushCampaignReportInfo>
      <campaignid>1e3816b2-bc0d-4b18-8177-748fb5d5fd19</campaignid>
      <campaignname>sample string 2</campaignname>
      <clickers>4</clickers>
      <failed>6</failed>
      <failedPercentage>7.1</failedPercentage>
      <openedPercentage>10.1</openedPercentage>
      <opens>9</opens>
      <sentdate>2016-12-24T14:12:12</sentdate>
      <senttype>Regular</senttype>
      <totalDevices>11</totalDevices>
      <totalclicks>3</totalclicks>
      <totalsent>8</totalsent>
      <unsubscribe>5</unsubscribe>
    </ApiPushCampaignReportInfo>
  </pushCampaignReportsInfo>
</ApiPushCampaignReportInfoList>