Skip to main content
GET
/
campaigns
/
log
curl "https://api2.ecomailapp.cz/campaigns/log?email=foo@bar.cz&per_page=10&events[]=open&events[]=click" \
  -H "key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
{
  "campaign_log": [
    {
      "id": 5678,
      "campaign_id": 100,
      "autoresponder_id": null,
      "action_id": null,
      "event": "open",
      "msg": null,
      "url": null,
      "email": "foo@bar.cz",
      "occured_at": "2025-03-15T14:30:00.000000Z",
      "mail_name": null
    },
    {
      "id": 5677,
      "campaign_id": 100,
      "autoresponder_id": null,
      "action_id": null,
      "event": "click",
      "msg": null,
      "url": "https://example.com/offer",
      "email": "foo@bar.cz",
      "occured_at": "2025-03-15T14:25:00.000000Z",
      "mail_name": null
    }
  ],
  "current_page": 1,
  "per_page": 10,
  "total": 2,
  "last_page": 1
}
email
string
Filter by subscriber email address.
campaign_id
integer
Filter by campaign ID.
events[]
string
Filter by event types. Can be specified multiple times. Possible values: send, open, click, hard_bounce, soft_bounce, out_of_band, unsub, spam, spam_complaint.
date_from
string
Filter events from this date (inclusive, ISO format e.g. 2025-01-01).
date_to
string
Filter events up to this date (inclusive, ISO format e.g. 2025-12-31).
per_page
integer
Number of results per page. Default 20, maximum 100.
page
integer
Page number.
sort_by
string
Column to sort by. Possible values: occured_at, id, campaign_id, event. Default occured_at.
sort_dir
string
Sort direction. Possible values: asc, desc. Default desc.
curl "https://api2.ecomailapp.cz/campaigns/log?email=foo@bar.cz&per_page=10&events[]=open&events[]=click" \
  -H "key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
{
  "campaign_log": [
    {
      "id": 5678,
      "campaign_id": 100,
      "autoresponder_id": null,
      "action_id": null,
      "event": "open",
      "msg": null,
      "url": null,
      "email": "foo@bar.cz",
      "occured_at": "2025-03-15T14:30:00.000000Z",
      "mail_name": null
    },
    {
      "id": 5677,
      "campaign_id": 100,
      "autoresponder_id": null,
      "action_id": null,
      "event": "click",
      "msg": null,
      "url": "https://example.com/offer",
      "email": "foo@bar.cz",
      "occured_at": "2025-03-15T14:25:00.000000Z",
      "mail_name": null
    }
  ],
  "current_page": 1,
  "per_page": 10,
  "total": 2,
  "last_page": 1
}