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

    List All Conversions


    Returns conversions across all URL shorteners (tracking links) over a date range. Results are paged and have the same shape as the per-link feed, but are not scoped to a single link β€” each entry's id is the tracking link the conversion is attributed to. To fetch conversions for one link, see Get Conversions.

    Query Parameters
    skipinteger
    The number of records to skip. Defaults to 0.
    takeinteger
    The page size. Defaults to 100.
    startstring
    The start of the date range in yyyyMMdd format. Defaults to the first day of the current month.
    endstring
    The end of the date range in yyyyMMdd format. Defaults to today.
    HTTP Response Examples
    200Success
    { "Status": true, "Message": "", "Response": { "conversions": [ { "conversion_uuid": "3f9c1a72-8e4b-4d2a-9f10-6b5c7d8e9a01", "id": "5z3dzrwk", "dsid": "8a1f9c2b3d4e5f60718293a4b5c6d7e8", "campaign": "Summer Promotion", "campaignId": 1976, "conversion_value": 1250.00, "date_converted": "2026-07-25T14:32:00Z", "properties": { "tournament": "f7523d3c-30c4-4307-93e9-41b94b6aab06", "tournament_name": "Sunshine Coast Pickleball Open 2026" } }, { "conversion_uuid": "b71e5d90-2c14-4a8f-9d33-1f0a2b3c4d5e", "id": "kf82mzqp", "dsid": "1c2d3e4f5a6b7c8d9e0f1a2b3c4d5e6f", "campaign": "Fall Newsletter", "campaignId": 2013, "conversion_value": 49.99, "date_converted": "2026-07-24T09:05:00Z", "properties": {} } ], "take": 100, "skip": 0, "total_count": 342, "filtered_count": 2, "has_more_results": true } }

    Response fields

    FieldTypeDescription
    conversionsarrayOne entry per conversion in the period (paged by skip/take), newest first.
    conversions[].conversion_uuidstringStable unique identifier for the conversion. Use it as a dedupe key.
    conversions[].idstringThe tracking link the conversion is attributed to.
    conversions[].dsidstringThe DailyStory contact id (dsid) that converted. Use it to look up the full contact.
    conversions[].campaignstringThe name of the campaign the contact belongs to.
    conversions[].campaignIdintegerThe id of the campaign the contact belongs to.
    conversions[].conversion_valuenumberThe attributed conversion value.
    conversions[].date_convertedstringThe conversion time in UTC, ISO 8601 (e.g. 2026-07-25T14:32:00Z).
    conversions[].propertiesobjectTenant-specific attributes captured with the conversion. Keys vary by account.
    takeintegerThe page size that was requested.
    skipintegerThe number of records skipped.
    total_countintegerThe total number of conversions in the period across all links.
    filtered_countintegerThe number of conversions returned in this page.
    has_more_resultsbooleanTrue when more records remain beyond this page.

    Dates are compared in UTC and the range is inclusive of both start and end. When neither is supplied, the endpoint returns conversions for the current month to date. The properties object contains whatever attributes were recorded at conversion time, so its keys differ from one account to the next.


    How helpful was this article?

    πŸ‘ or πŸ‘Ž

    Related Articles

    Markdown Version