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 recipient activity

GET
/deliveries/{smartflowId}/{deliveryId}/recipients
Retrieve a per-contact activity list for a specific delivery. Each record represents one recipient and shows the signals they triggered (open, click, unsubscribe, spam, conversion). The signal parameter filters the list to contacts who performed the selected action; without it, all recipients are returned.

Request

Query Params

Responses

🟢200
application/json
OK
Bodyapplication/json

🟠403
🟠404
Request Request Example
Shell
JavaScript
Java
Swift
curl --location '/deliveries///recipients?signal=opened&q=john&limit=100&offset=0&sort=-openedAt%2Csurname&dateFrom=2025-06-01&dateTo=2025-06-30'
Response Response Example
200 - Success
{
    "recipients": [
        {
            "contactId": "11ef6061-cef7-b850-ada7-c969374ebcce",
            "clientContactId": "56738",
            "firstName": "John",
            "surname": "Doe",
            "email": "john.doe@example.com",
            "deliveredAt": "2018-05-30T12:58:00+00:00",
            "openedAt": "2018-05-30T13:00:00+00:00",
            "openCount": 2,
            "clickedAt": "2018-05-30T13:01:30+00:00",
            "clickCount": 3,
            "unsubscribedAt": null,
            "spamAt": null,
            "conversionsAmount": 1287,
            "conversionsCurrency": "EUR",
            "conversionsNumber": 1
        },
        {
            "contactId": "22ef6061-cef7-b850-ada7-c969374ebcce",
            "clientContactId": "185506",
            "firstName": "Jane",
            "surname": "Smith",
            "email": "jane.smith@example.com",
            "deliveredAt": "2018-05-30T12:59:00+00:00",
            "openedAt": "2018-05-30T14:22:00+00:00",
            "openCount": 1,
            "clickedAt": null,
            "clickCount": 0,
            "unsubscribedAt": "2018-05-30T14:25:00+00:00",
            "spamAt": null,
            "conversionsAmount": null,
            "conversionsCurrency": null,
            "conversionsNumber": 0
        }
    ],
    "paging": {
        "start": 0,
        "count": 2,
        "totalCount": 412
    }
}
Modified at 2026-06-23 12:56:40
Previous
Get delivery-specific conversions
Next
Get recipient activity timeline
Built with