1. Deliveries
Incomaker Reporting v1
  • Abandoned carts
    • Get abandoned carts list
      GET
    • Get abandoned carts detail
      GET
  • Campaigns
    • Get campaigns count and metrics by language
      GET
    • Get campaigns list
      GET
    • Get campaigns daily results
      GET
    • Get campaigns monthly summanry
      GET
    • Get campaigns results hourly histogram
      GET
    • Get campaigns results daily histogram
      GET
    • Get campaigns results monthly histogram
      GET
    • Get list of senders
      GET
    • Get list of contacts timeline for campaign
      GET
    • Get list of contacts for campaign
      GET
    • Get list of contacts for period
      GET
    • Get A/B tests for campaigns
      GET
    • Get campaign conversions
      GET
    • Get campaign recipient list
      GET
    • Get campaign recipient activity timeline
      GET
    • Get campaign link click stats
      GET
  • Conversions
    • Get conversions list
    • Get total conversions
    • Get conversions by timeframe
    • Get conversions history
  • Contacts
    • Get contacts
    • Get contacts details
    • Get contacts recommendation
    • Get unsubscribed contacts
    • Get duplicate contacts
    • Get contacts with invalid names
    • Get contact gender statistics
  • Segments
    • Get segments list
  • Deliveries
    • Get deliveries list
      GET
    • Get delivery conversions
      GET
    • Get delivery-specific conversions
      GET
    • Get delivery recipient activity
      GET
    • Get recipient activity timeline
      GET
    • Get delivery link click stats
      GET
    • Get delivery detail
      GET
    • Get deliveries count and metrics by language
      GET
    • Get deliveries daily results
      GET
    • Get delivery daily detail for individual smartflow
      GET
  • RFM Analysis
    • Get Recency × Frequency heatmap
    • Get Recency × Monetary heatmap
    • Get Frequency × Monetary heatmap
    • Get full RFM cube or slices
    • Get recency distribution
    • Get frequency distribution
    • Get monetary distribution
    • Get combined RFM distributions
    • Get cell table
    • Get cell detail
    • Get contacts in cell
    • Get contact RFM detail
    • Get RFM Segments
    • Get RFM outliers
    • Get review candidates
  • Dialogs
    • Get dialogs list
    • Get dialogs data
  • Orders
    • Get orders list
    • Get order detail
    • Get order recommendation
  • Products
    • Get products
    • Get individual purchases for a product
    • Get products frequently purchased together
    • Get product categories
    • Get product detail
    • Get products by campaign
    • Get products by revenues
    • Get products recommendation
  • Schemas
    • Paging
    • ConversionAggregate
    • Contact
  1. Deliveries

Get delivery conversions

GET
/deliveries/{smartflowId}/conversions
Retrieve detailed conversions attributed to a specific delivery (smartflow) and its underlying activities.

Request

Path Params

Query Params

Header Params

Responses

🟢200
application/json
OK
Bodyapplication/json

🟠403
🟠404
Request Request Example
Shell
JavaScript
Java
Swift
curl --location '/deliveries/11ef6061-cef7-b850-ada7-c969374ebcce/conversions?dateFrom=2018-05-30&dateTo=2018-05-31&country=CZ%2CSK&currency=EUR%2CCZK&limit=100&offset=0&sort=-datetime%2CconversionsAmount' \
--header 'Authorization: Bearer JWT'
Response Response Example
200 - Success
{
    "conversions": [
        {
            "contactId": "11ef6061-cef7-b850-ada7-c969374ebcce",
            "clientContactId": "56738",
            "deliveryId": "a1ef6061-cef7-b850-ada7-c969374ebcce",
            "datetime": "2018-05-30T13:00:00+00:00",
            "orderId": "1131256454",
            "firstName": "John",
            "surname": "Doe",
            "conversionsAmount": 1287,
            "conversionsCurrency": "EUR",
            "conversionsReferenceAmount": 1287,
            "country": "CZ"
        },
        {
            "contactId": "22ef6061-cef7-b850-ada7-c969374ebcce",
            "clientContactId": "185506",
            "deliveryId": "b1ef6061-cef7-b850-ada7-c969374ebcce",
            "datetime": "2018-05-31T09:15:00+00:00",
            "orderId": "1131256455",
            "firstName": "Jane",
            "surname": "Smith",
            "conversionsAmount": 5824,
            "conversionsCurrency": "CZK",
            "conversionsReferenceAmount": 230.42,
            "country": "CZ"
        }
    ],
    "paging": {
        "start": 0,
        "count": 2,
        "totalCount": 12
    }
}
Modified at 2026-06-08 15:36:31
Previous
Get deliveries list
Next
Get delivery-specific conversions
Built with