Aggregate Conversions
Aggregates a list of all campaigns conversions together by day.
Path Parameters
funnelidstringrequired
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 Response Examples
200
{
"Status": true,
"Message": "",
"Response": {
"total_conversions": 0,
"total_conversions_value": 0,
"conversions": [
{
"campaign_name": null,
"campaignid": 0,
"funnelid": 0,
"total": 0,
"value": 0,
"date_converted": "2022-01-07T00:00:00",
"converted": "2022-01-07"
},
{
"campaign_name": null,
"campaignid": 0,
"funnelid": 0,
"total": 0,
"value": 0,
"date_converted": "2022-01-08T00:00:00",
"converted": "2022-01-08"
}
]
}
}