For more information on using API

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

Get WhastApp campaignsreports . You can get whatsapp campaigns reports filtered (you will get the last 20 campaigns in the last 6 months by default)

Request Information

URI Parameters

Name

Description

Type

Additional information

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

ApiWhatsAppCampaignReportInfoList

Name

Description

Type

Additional information

totalitems

integer
count

integer
campaignreportslist

Response Formats

application/json, text/json

Sample:
{
  "totalitems": 2,
  "count": 2,
  "campaignreportslist": [
    {
      "campaignid": "c80098a2-3c4e-4588-ace3-714568ef4f02",
      "campaignname": "sample string 2",
      "sentdate": "2016-12-24T14:12:12",
      "senttype": 1,
      "totalclicks": 3,
      "clickers": 4,
      "unsubscribe": 5,
      "unsubscribePercentage": 6.1,
      "failed": 7,
      "failedPercentage": 8.1,
      "totalsent": 9,
      "opens": 10,
      "openedPercentage": 11.1
    },
    {
      "campaignid": "c80098a2-3c4e-4588-ace3-714568ef4f02",
      "campaignname": "sample string 2",
      "sentdate": "2016-12-24T14:12:12",
      "senttype": 1,
      "totalclicks": 3,
      "clickers": 4,
      "unsubscribe": 5,
      "unsubscribePercentage": 6.1,
      "failed": 7,
      "failedPercentage": 8.1,
      "totalsent": 9,
      "opens": 10,
      "openedPercentage": 11.1
    }
  ]
}

application/xml, text/xml

Sample:
<ApiWhatsAppCampaignReportInfoList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ActiveTrail.BusinessLogic.Domain.WhatsApp.WhatsAppCampaignReport">
  <Count>2</Count>
  <TotalItems>2</TotalItems>
  <whatsAppCampaignReportsInfo>
    <ApiWhatsAppCampaignReportInfo>
      <campaignid>c80098a2-3c4e-4588-ace3-714568ef4f02</campaignid>
      <campaignname>sample string 2</campaignname>
      <clickers>4</clickers>
      <failed>7</failed>
      <failedPercentage>8.1</failedPercentage>
      <openedPercentage>11.1</openedPercentage>
      <opens>10</opens>
      <sentdate>2016-12-24T14:12:12</sentdate>
      <senttype>Regular</senttype>
      <totalclicks>3</totalclicks>
      <totalsent>9</totalsent>
      <unsubscribe>5</unsubscribe>
      <unsubscribePercentage>6.1</unsubscribePercentage>
    </ApiWhatsAppCampaignReportInfo>
    <ApiWhatsAppCampaignReportInfo>
      <campaignid>c80098a2-3c4e-4588-ace3-714568ef4f02</campaignid>
      <campaignname>sample string 2</campaignname>
      <clickers>4</clickers>
      <failed>7</failed>
      <failedPercentage>8.1</failedPercentage>
      <openedPercentage>11.1</openedPercentage>
      <opens>10</opens>
      <sentdate>2016-12-24T14:12:12</sentdate>
      <senttype>Regular</senttype>
      <totalclicks>3</totalclicks>
      <totalsent>9</totalsent>
      <unsubscribe>5</unsubscribe>
      <unsubscribePercentage>6.1</unsubscribePercentage>
    </ApiWhatsAppCampaignReportInfo>
  </whatsAppCampaignReportsInfo>
</ApiWhatsAppCampaignReportInfoList>