Incomaker Reporting v1
API Reference
API Reference
  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 daily conversions
  • 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 sends list
      GET
    • Get deliveries overview
      GET
    • 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 deliveries overview

Designing
GET
/deliveries/overview
Dashboard list: one row per thing you run rather than per send. Each smartflow collapses into a single top-level row summing all of its sending activities (same numbers GET /deliveries reports for that smartflow, including phantom-conversion filtering and trigger-node conversion rollup), and standalone campaigns sit alongside them in the same shape. Where /deliveries/sends would return five rows for a five-email smartflow, this returns one. Standalone campaigns with no email/SMS asset (medium=unknown, e.g. audience-sync campaigns pushing segments to ad platforms) are excluded by default; pass medium=unknown explicitly to include them. Default sort is -datetime.

Request

Query Params

Header Params

Responses

🟢200Success
application/json
Bodyapplication/json

🟠403Forbidden
Request Request Example
Shell
JavaScript
Java
Swift
curl --location '/deliveries/overview?dateFrom=2026-01-01&dateTo=2026-03-31&limit=20&offset=0&q=Welcome&medium=e-mail&from=newsletter%40example.com&language=cs%2Csk&type=smartflow%2Ccampaign&sort=-datetime&order=-datetime' \
--header 'Authorization: Bearer JWT'
Response Response Example
200 - Example 1
{
    "items": [
        {
            "type": "string",
            "id": "string",
            "name": "string",
            "state": "string",
            "medium": "string",
            "from": "string",
            "language": "string",
            "datetime": "string",
            "sendCount": 0,
            "sent": 0,
            "delivered": 0,
            "opened": 0,
            "clicked": 0,
            "totalClicked": 0,
            "openRate": 0,
            "clickThroughRate": 0,
            "clickToOpenRate": 0,
            "unsubscribeRate": 0,
            "unsubscribed": 0,
            "spam": 0,
            "conversionsAmount": 0,
            "conversionsNumber": 0,
            "conversionsCurrency": "string"
        }
    ],
    "paging": {
        "start": 0,
        "count": 0,
        "totalCount": 0
    }
}
Modified at 2026-08-04 10:04:01
Previous
Get sends list
Next
Get deliveries list
Built with