GET Automation Reports​
GET
/reports/automations
Retrieve paginated published automation funnels with aggregate subscriber counts, execution progress totals, recent subscriber entries, and a top-triggered automations summary.
Authorizations​
ApplicationPasswords
WordPress Application Passwords — use Basic auth with your WordPress username and an application password in the format: username:application_password
Type
API Key (header: Authorization)
Parameters​
Query Parameters
per_page
Number of automation records to return per page.
Type
integer
Default
15page
Page number for pagination.
Type
integer
Default
1Responses​
Automation reports retrieved successfully.
application/json
JSON
{
"automations": {
"current_page": 0,
"data": [
{
"id": 0,
"title": "string",
"status": "string",
"trigger_name": "string",
"created_at": "string",
"total_subscribers": 0,
"completed_count": 0,
"in_progress_count": 0,
"last_run_at": "string",
"recent_subscribers": [
{
"id": 0,
"name": "string",
"email": "string",
"avatar": "string",
"entered_at": "string"
}
]
}
],
"from": 0,
"last_page": 0,
"next_page_url": "string",
"path": "string",
"per_page": 0,
"prev_page_url": "string",
"to": 0,
"total": 0
},
"overview": {
"total": 0,
"subscribers": 0,
"completed": 0,
"in_progress": 0
},
"top_automations": [
{
"id": 0,
"title": "string",
"trigger_name": "string",
"trigger_count": 0
}
]
}