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": "g48my",
  "actions_count": 1,
  "completed_actions_count": 0,
  "created_at": "2025-08-19T11:19:15-04:00",
  "created_at_string": "Aug 19, 2025 11:19 am EDT",
  "created_at_utc": "2025-08-19T15:19:15Z",
  "execution_data": null,
  "failed_actions_count": 0,
  "id": "0198c2e9-be57-7c2e-a70e-c83394fd4387",
  "idle_actions_count": 0,
  "key": "workflow_8",
  "log": {},
  "name": "Workflow 8",
  "object": "execution",
  "running_actions_count": 0,
  "stats": {
    "start_of_workflow-ulrzgD": {
      "status": "open"
    },
    "ulrzgD": {
      "status": "idle",
      "scheduled_at": null,
      "completed_at": null,
      "stopped_at": null,
      "failed_at": null
    },
    "ulrzgD-r2swQ7": {
      "status": "closed"
    },
    "r2swQ7": {
      "status": "idle",
      "scheduled_at": null,
      "completed_at": null,
      "stopped_at": null,
      "failed_at": null
    },
    "r2swQ7-th2Fzk": {
      "status": "closed"
    },
    "th2Fzk": {
      "status": "idle",
      "scheduled_at": null,
      "completed_at": null,
      "stopped_at": null,
      "failed_at": null
    },
    "start_of_workflow-J8j973": {
      "status": "open"
    },
    "J8j973": {
      "status": "idle",
      "scheduled_at": null,
      "completed_at": null,
      "stopped_at": null,
      "failed_at": null
    },
    "start_of_workflow-LXFzZ9": {
      "status": "open"
    },
    "LXFzZ9": {
      "status": "idle",
      "scheduled_at": null,
      "completed_at": null,
      "stopped_at": null,
      "failed_at": null
    },
    "LXFzZ9-th2Fzk": {
      "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": []
  }
}