curl "https://api2.ecomailapp.cz/subscribers/foo@bar.cz/automation-log?per_page=10" \
-H "key: YOUR_API_KEY" \
-H "Content-Type: application/json"
{
"automation_log": [
{
"id": 5678,
"user_id": 1,
"pipeline_id": 42,
"action_id": "node_abc123",
"trigger_id": "trigger_xyz",
"email": "foo@bar.cz",
"props": {"key": "value"},
"next": null,
"timestamp": "2025-03-15T14:30:00.000000Z"
}
],
"current_page": 1,
"per_page": 10,
"total": 1,
"last_page": 1
}
Retrieve a paginated list of automation (pipeline) log entries for a given subscriber email address, sorted by timestamp descending by default.
curl "https://api2.ecomailapp.cz/subscribers/foo@bar.cz/automation-log?per_page=10" \
-H "key: YOUR_API_KEY" \
-H "Content-Type: application/json"
{
"automation_log": [
{
"id": 5678,
"user_id": 1,
"pipeline_id": 42,
"action_id": "node_abc123",
"trigger_id": "trigger_xyz",
"email": "foo@bar.cz",
"props": {"key": "value"},
"next": null,
"timestamp": "2025-03-15T14:30:00.000000Z"
}
],
"current_page": 1,
"per_page": 10,
"total": 1,
"last_page": 1
}
20, maximum 100.timestamp, id, pipeline_id. Default timestamp.asc, desc. Default desc.curl "https://api2.ecomailapp.cz/subscribers/foo@bar.cz/automation-log?per_page=10" \
-H "key: YOUR_API_KEY" \
-H "Content-Type: application/json"
{
"automation_log": [
{
"id": 5678,
"user_id": 1,
"pipeline_id": 42,
"action_id": "node_abc123",
"trigger_id": "trigger_xyz",
"email": "foo@bar.cz",
"props": {"key": "value"},
"next": null,
"timestamp": "2025-03-15T14:30:00.000000Z"
}
],
"current_page": 1,
"per_page": 10,
"total": 1,
"last_page": 1
}