Header name | Description |
---|---|
Content-Type required |
application/json |
X-API-KEY required |
YOUR_API_KEY |
// Successful request GET /api/v2/assets/fvihM9798awLO9Cvekqv/dag_action_runs 200 { "dag_action_runs": [ { "id": 2, "status": "running", "created_at": "2023-11-27T09:42:46.368Z", "dag_action": { "id": 4, "name": "Sample DAG action 4", "description": "Sample DAG action for tests", "category": "Tests" }, "dag_action_run_messages": [ { "id": 2, "message": "Set in queue...", "created_at": "2023-11-27T09:42:46.371Z" } ] } ] }
// If user does not have 'ACTIONS_VIEW' permission GET /api/v2/assets/wMoeQTrSHVd41AD0cmoj/dag_action_runs 403 { "error": "Permission denied. Must have ACTIONS_VIEW permissions." }
// If :asset_id is not found GET /api/v2/assets/not-found-id/dag_action_runs 404 { "error": "asset not found" }
Code | Description |
---|---|
401 | Unauthorized |
404 | Not found |
500 | Internal Server Error |
422 | Missing parameters |