GET Reports/ReturningCalls?campaignId={campaignId}&poolId={poolId}&start={start}&end={end}&source={source}

Get returning calls stats

Returns

HTTP 200

Request Information

Parameters

NameDescriptionAdditional information
campaignId
Filter by campaign ID

Define this parameter in the request URI.

This parameter is optional.

poolId
Filter by pool ID

Define this parameter in the request URI.

This parameter is optional.

start
Date of period start

Define this parameter in the request URI.

This parameter is optional.

end
Date of period end

Define this parameter in the request URI.

This parameter is optional.

source
Filter by source

Define this parameter in the request URI.

This parameter is optional.

Response Information

Response body formats

application/json, text/json, text/html

Sample:
[
  {
    "Type": "New",
    "Count": 27
  },
  {
    "Type": "Returning",
    "Count": 4
  },
  {
    "Type": "Anonymous",
    "Count": 1
  }
]

application/xml, text/xml

Sample:
<ArrayOfApiReturningCall xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CallTracker.Api.Models">
  <ApiReturningCall>
    <Count>27</Count>
    <Type>New</Type>
  </ApiReturningCall>
  <ApiReturningCall>
    <Count>4</Count>
    <Type>Returning</Type>
  </ApiReturningCall>
  <ApiReturningCall>
    <Count>1</Count>
    <Type>Anonymous</Type>
  </ApiReturningCall>
</ArrayOfApiReturningCall>