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 sends list

Designing
GET
/deliveries/sends
Flat list of all individual sends across both smartflow activities and standalone campaigns. Returns one record per send. The from field identifies the sending address and is the primary way to distinguish target markets or brand identities. Conversions are attributed per individual send.

Request

Query Params

Header Params

Responses

🟢200Success
application/json
Bodyapplication/json

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