Executions API

Monitor and control workflow executions

Available Endpoints

The Execution Object

hashid string

System-generated unique identifier

actions_count integer

Total number of actions in the execution

completed_actions_count integer

Number of completed actions

created_at string

Created at in specified timezone

created_at_string string

Created at formatted as human-readable string

created_at_utc string

Created at in UTC

execution_data object

Data context for the execution

failed_actions_count integer

Number of failed actions

id string

System-generated unique identifier

idle_actions_count integer

Number of idle actions

key string

Unique key for the execution

log object

Execution log details

name string

Name of the execution

object string

Object type identifier

running_actions_count integer

Number of currently running actions

stats object

Execution statistics

status string

Current status of the execution

stopped_actions_count integer

Number of stopped actions

template object

Template layout for the execution

Execution Object
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
  "hashid": "v8brp",
  "actions_count": 1,
  "completed_actions_count": 0,
  "created_at": "2025-10-05T23:49:44-04:00",
  "created_at_string": "Oct 05, 2025 11:49 pm EDT",
  "created_at_utc": "2025-10-06T03:49:44Z",
  "execution_data": null,
  "failed_actions_count": 0,
  "id": "0199b7a3-b994-7588-82bf-549a3600bc27",
  "idle_actions_count": 0,
  "key": "workflow_8",
  "log": {},
  "name": "Workflow 8",
  "object": "execution",
  "running_actions_count": 0,
  "stats": {
    "start_of_workflow-nuvESM": {
      "status": "open"
    },
    "nuvESM": {
      "status": "idle",
      "scheduled_at": null,
      "completed_at": null,
      "stopped_at": null,
      "failed_at": null
    },
    "nuvESM-VdBcaH": {
      "status": "closed"
    },
    "VdBcaH": {
      "status": "idle",
      "scheduled_at": null,
      "completed_at": null,
      "stopped_at": null,
      "failed_at": null
    },
    "VdBcaH-3HLsDL": {
      "status": "closed"
    },
    "3HLsDL": {
      "status": "idle",
      "scheduled_at": null,
      "completed_at": null,
      "stopped_at": null,
      "failed_at": null
    },
    "start_of_workflow-gYOa8U": {
      "status": "open"
    },
    "gYOa8U": {
      "status": "idle",
      "scheduled_at": null,
      "completed_at": null,
      "stopped_at": null,
      "failed_at": null
    },
    "start_of_workflow-nZH9BR": {
      "status": "open"
    },
    "nZH9BR": {
      "status": "idle",
      "scheduled_at": null,
      "completed_at": null,
      "stopped_at": null,
      "failed_at": null
    },
    "nZH9BR-3HLsDL": {
      "status": "closed"
    }
  },
  "status": "running",
  "stopped_actions_count": 0,
  "template": {
    "nodes": [
      {
        "id": "start_of_workflow",
        "type": "Start",
        "name": "Start Workflow"
      }
    ],
    "edges": [],
    "width": 1200,
    "height": 150,
    "positions": {
      "start_of_workflow": {
        "x": 450,
        "y": 0
      }
    },
    "action_types": []
  }
}