For more information on using API

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

Request Information

URI Parameters

Name

Description

Type

Additional information

id

string

Required

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

ApiWhatsAppCampaignContactsList

Name

Description

Type

Additional information

totalitems

integer
count

integer
campaignreportcrmuserslist

Response Formats

application/json, text/json

Sample:
{
  "totalitems": 2,
  "count": 2,
  "campaignreportcrmuserslist": [
    {
      "crmuserid": 1,
      "firstname": "sample string 2",
      "lastname": "sample string 3",
      "mobilenumber": "sample string 4"
    },
    {
      "crmuserid": 1,
      "firstname": "sample string 2",
      "lastname": "sample string 3",
      "mobilenumber": "sample string 4"
    }
  ]
}

application/xml, text/xml

Sample:
<ApiWhatsAppCampaignContactsList 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>
  <whatsAppCampaignContacts>
    <ApiWhatsAppCampaignContacts>
      <crmuserid>1</crmuserid>
      <firstname>sample string 2</firstname>
      <lastname>sample string 3</lastname>
      <mobilenumber>sample string 4</mobilenumber>
    </ApiWhatsAppCampaignContacts>
    <ApiWhatsAppCampaignContacts>
      <crmuserid>1</crmuserid>
      <firstname>sample string 2</firstname>
      <lastname>sample string 3</lastname>
      <mobilenumber>sample string 4</mobilenumber>
    </ApiWhatsAppCampaignContacts>
  </whatsAppCampaignContacts>
</ApiWhatsAppCampaignContactsList>