Get Campaign Conversions
Returns a the conversions that occurred for a particular campaign.
Path Parameters
campaignidnumberrequired
The id of the campaign to return conversion data for.
Query Parameters
startstring
Start date in the format: yyyy-MM-dd, e.g. 2025-05-01 for May 1st 2025.
endstring
End date in the format: yyyy-MM-dd, e.g. 2025-06-01 for June 1st 2025.
HTTP Request Examples
HTTP Response Examples
200
{
"Status": true,
"Message": "",
"Response": {
"summary": {
"first_conversion": "2021-04-08T00:00:00",
"last_conversion": "2021-04-09T00:00:00",
"total_converted": 3,
"total_entered": 2,
"value": 166.36,
"conversion_rate": 150
},
"total_conversions": 0,
"total_conversions_value": 0,
"conversions": [
{
"campaign_name": null,
"campaignid": 0,
"funnelid": 0,
"total": 0,
"value": 0,
"date_converted": "2021-12-08T21:11:57.495724Z",
"converted": "2021-12-08"
},
{
"campaign_name": null,
"campaignid": 0,
"funnelid": 0,
"total": 0,
"value": 0,
"date_converted": "2021-12-09T21:11:57.495724Z",
"converted": "2021-12-09"
}
]
}
}