GET Reports/Conversions?page={page}&campaignId={campaignId}&poolId={poolId}&start={start}&end={end}&source={source}
Get conversions
Returns
HTTP 200, 206 (when page is not last)
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| page | Page index |
Define this parameter in the request URI. This parameter is optional. |
| 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:
[
{
"Url": "http://yoursite.com/",
"CallCount": 5,
"Percentage": 50
},
{
"Url": "http://yoursite.com/a.html",
"CallCount": 3,
"Percentage": 30
},
{
"Url": "http://yoursite.com/b.html",
"CallCount": 2,
"Percentage": 20
}
]
application/xml, text/xml
Sample:
<ArrayOfConversionPagesStats xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CallTracker.BLL.Models">
<ConversionPagesStats>
<CallCount>5</CallCount>
<Percentage>50</Percentage>
<Url>http://yoursite.com/</Url>
</ConversionPagesStats>
<ConversionPagesStats>
<CallCount>3</CallCount>
<Percentage>30</Percentage>
<Url>http://yoursite.com/a.html</Url>
</ConversionPagesStats>
<ConversionPagesStats>
<CallCount>2</CallCount>
<Percentage>20</Percentage>
<Url>http://yoursite.com/b.html</Url>
</ConversionPagesStats>
</ArrayOfConversionPagesStats>