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
| Field | Type | Description |
|---|---|---|
| conversions | array | One entry per conversion in the period (paged by skip/take), newest first. |
| conversions[].conversion_uuid | string | Stable unique identifier for the conversion. Use it as a dedupe key. |
| conversions[].id | string | The tracking link the conversion is attributed to. |
| conversions[].dsid | string | The DailyStory contact id (dsid) that converted. Use it to look up the full contact. |
| conversions[].campaign | string | The name of the campaign the contact belongs to. |
| conversions[].campaignId | integer | The id of the campaign the contact belongs to. |
| conversions[].conversion_value | number | The attributed conversion value. |
| conversions[].date_converted | string | The conversion time in UTC, ISO 8601 (e.g. 2026-07-25T14:32:00Z). |
| conversions[].properties | object | Tenant-specific attributes captured with the conversion. Keys vary by account. |
| take | integer | The page size that was requested. |
| skip | integer | The number of records skipped. |
| total_count | integer | The total number of conversions in the period across all links. |
| filtered_count | integer | The number of conversions returned in this page. |
| has_more_results | boolean | True 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.