curl --request GET \
--url http://localhost:3333/v1/tasks/{taskId}/automations/runs \
--header 'X-API-Key: <api-key>'[
{
"id": "ear_abc123def456",
"status": "PENDING",
"trigger": "MANUAL",
"createdAt": "2023-11-07T05:31:56Z",
"completedAt": "2023-11-07T05:31:56Z",
"error": {}
}
]Retrieve all evidence automation runs across automations for a specific task
curl --request GET \
--url http://localhost:3333/v1/tasks/{taskId}/automations/runs \
--header 'X-API-Key: <api-key>'[
{
"id": "ear_abc123def456",
"status": "PENDING",
"trigger": "MANUAL",
"createdAt": "2023-11-07T05:31:56Z",
"completedAt": "2023-11-07T05:31:56Z",
"error": {}
}
]API key for authentication
Organization ID (required for session auth, optional for API key auth)
Task ID
"tsk_abc123def456"
Automation runs retrieved successfully
Was this page helpful?