Ask about anything in DailyStory Developer Documentation

Type a question in your own words below. Answers are written from our published articles and cite the ones they came from.

Recently updated

    Dashboard
    Edit Article Logout

    Aggregate Conversions


    Returns conversion totals aggregated across all campaigns for the tenant, along with a day-by-day time series and two all-time metrics. Defaults to the past 60 days (UTC) when start and end are omitted. For a single-campaign breakdown use Get Campaign Conversions.

    Query Parameters
    startstring
    Start date in yyyyMMdd format (no dashes). Example: 20250501 for May 1, 2025. Defaults to 60 days ago.
    endstring
    End date in yyyyMMdd format (no dashes). Example: 20250601 for June 1, 2025. Defaults to today (UTC).
    HTTP Response Examples
    200
    { "Status": true, "Message": "", "Response": { "total_conversions": 47, "total_conversions_value": 2413.75, "from": "2025-02-20", "to": "2025-04-20", "conversions": [ { "campaign_name": null, "campaignid": 0, "funnelid": 0, "total": 2, "value": 99.00, "date_converted": "2025-03-07T00:00:00", "converted": "2025-03-07" }, { "campaign_name": null, "campaignid": 0, "funnelid": 0, "total": 3, "value": 148.50, "date_converted": "2025-03-08T00:00:00", "converted": "2025-03-08" } ], "total_conversion_value_alltime": 48275.12, "total_conversion_rate_alltime": 12.4 } }
    HTTP Response Parameters
    total_conversionsnumber
    Count of conversions across all campaigns within the requested date range.
    total_conversions_valuenumber
    Total monetary value of conversions across all campaigns within the requested date range.
    fromstring
    Start of the requested window (yyyy-MM-dd, echoed from the resolved start date).
    tostring
    End of the requested window (yyyy-MM-dd, echoed from the resolved end date).
    conversionsarray
    Day-by-day aggregate time series across all campaigns. Each entry has campaign_name, campaignid, funnelid, total, value, date_converted, and converted (yyyy-MM-dd).
    total_conversion_value_alltimenumber
    Lifetime conversion value across every campaign in the tenant (ignores the date range).
    total_conversion_rate_alltimenumber
    Lifetime conversion rate (percentage) across every campaign in the tenant (ignores the date range).

    How helpful was this article?

    πŸ‘ or πŸ‘Ž

    Related Articles

    Markdown Version