Retrieve execution

Retrieve execution

Endpoint

GET https://embedworkflow.com/api/v1/executions/{id}

Path Parameters

id string, required

System-generated unique identifier

Query Parameters

Response

Returns successful.

Response Properties

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

Errors

  • 404 - not found
Response
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": "8pr5y",
  "actions_count": 1,
  "completed_actions_count": 0,
  "created_at": "2025-07-13T01:01:14-04:00",
  "created_at_string": "Jul 13, 2025 01:01 am EDT",
  "created_at_utc": "2025-07-13T05:01:14Z",
  "execution_data": null,
  "failed_actions_count": 0,
  "id": "01980228-a46f-756f-95d7-8b1a0f28090d",
  "idle_actions_count": 0,
  "key": "workflow_8",
  "log": {},
  "name": "Workflow 8",
  "object": "execution",
  "running_actions_count": 0,
  "stats": {
    "start_of_workflow-yXvmVe": {
      "status": "open"
    },
    "yXvmVe": {
      "status": "idle",
      "scheduled_at": null,
      "completed_at": null,
      "stopped_at": null,
      "failed_at": null
    },
    "yXvmVe-G3kxmE": {
      "status": "closed"
    },
    "G3kxmE": {
      "status": "idle",
      "scheduled_at": null,
      "completed_at": null,
      "stopped_at": null,
      "failed_at": null
    },
    "G3kxmE-Ob7yFm": {
      "status": "closed"
    },
    "Ob7yFm": {
      "status": "idle",
      "scheduled_at": null,
      "completed_at": null,
      "stopped_at": null,
      "failed_at": null
    },
    "start_of_workflow-QT94A3": {
      "status": "open"
    },
    "QT94A3": {
      "status": "idle",
      "scheduled_at": null,
      "completed_at": null,
      "stopped_at": null,
      "failed_at": null
    },
    "start_of_workflow-QlbXWh": {
      "status": "open"
    },
    "QlbXWh": {
      "status": "idle",
      "scheduled_at": null,
      "completed_at": null,
      "stopped_at": null,
      "failed_at": null
    },
    "QlbXWh-Ob7yFm": {
      "status": "closed"
    }
  },
  "status": "running",
  "stopped_actions_count": 0,
  "template": {
    "nodes": [
      {
        "id": "start_of_workflow",
        "type": "Start",
        "name": "Start Workflow"
      }
    ],
    "edges": [],
    "width": 1500,
    "height": 600,
    "positions": {
      "start_of_workflow": {
        "x": 450,
        "y": 0
      }
    },
    "action_types": []
  }
}