/campaigns/{campaignId}/conversions and /deliveries/*/conversions already do (orderId, contactId, exact amount, FX-converted reference amount), generalized to any source -- or no source at all./conversions row (a smartflow node, an automation, or a campaign), how do you get to the individual orderId/contactId/timestamp/touchpoint records behind it? Follow the row's source.detailUrl, or call this endpoint directly with smartflowId/sourceId.dateFrom/dateTo are required; every other parameter is optional and narrows the result. Omitting every source param entirely is valid and answers a question none of the three per-source endpoints (/campaigns/{id}/conversions, /deliveries/{smartflowId}/conversions, /deliveries/{smartflowId}/{deliveryId}/conversions) can: "every conversion for this plugin," optionally narrowed only by contact or order -- e.g. finding a specific order without already knowing which campaign or smartflow produced it.curl --location '/conversions/items?dateFrom=2026-01-01&dateTo=2026-01-31&sourceId=11ed6a77-93c1-1330-bf67-c7acfbf36741&sourceType=campaign&smartflowId=7a1e2c3d-0000-4000-8000-000000000001&deliveryId=c1d2e3f4-0000-4000-8000-000000000005&contactId=11ef6061-cef7-b850-ada7-c969374ebcce&orderId=1131256454&country=CZ%2CSK¤cy=EUR%2CCZK&limit=100&offset=0&sort=-datetime' \
--header 'Authorization: Bearer JWT'{
"conversions": [
{
"contactId": "11ef6061-cef7-b850-ada7-c969374ebcce",
"clientContactId": "56738",
"datetime": "2026-01-30T13:00:00.000Z",
"orderId": "1131256454",
"firstName": "John",
"surname": "Doe",
"conversionsAmount": 1287,
"conversionsCurrency": "EUR",
"conversionsReferenceAmount": 32027.65,
"referenceCurrency": "CZK",
"country": "CZ",
"isRefund": false,
"attribution": {
"touch": "click",
"datetime": "2026-01-28T09:14:02.000Z",
"hoursToConversion": 51.8,
"model": "last-click",
"windowDays": 30
},
"source": {
"type": "smartflow",
"id": "7a1e2c3d-0000-4000-8000-000000000001",
"name": "Cart abandonment flow",
"campaignId": "9b2f4a11-0000-4000-8000-000000000099",
"smartflowId": "7a1e2c3d-0000-4000-8000-000000000001",
"smartflowName": "Cart abandonment flow",
"deliveryId": "c1d2e3f4-0000-4000-8000-000000000005",
"deliveryName": "Reminder email",
"detailUrl": "/v1/deliveries/7a1e2c3d-0000-4000-8000-000000000001/c1d2e3f4-0000-4000-8000-000000000005/conversions"
},
"activityUrl": "/v1/deliveries/7a1e2c3d-0000-4000-8000-000000000001/c1d2e3f4-0000-4000-8000-000000000005/recipients/11ef6061-cef7-b850-ada7-c969374ebcce/activity"
}
],
"paging": { "start": 1, "count": 1, "totalCount": 1 }
}