List workflows

List workflows

Endpoint

GET https://embedworkflow.com/api/v1/workflows

Query Parameters

starting_after string, optional

Cursor for pagination - return results after this ID

ending_before string, optional

Cursor for pagination - return results before this ID

limit integer, optional

Number of items to return (max 100)

expand array, optional

Expand related objects

Response

Returns successful.

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
{
  "collection": [
    {
      "hashid": "3bvde",
      "actions_count": 0,
      "created_at": "2025-07-13T01:01:17-04:00",
      "created_at_string": "Jul 13, 2025 01:01 am EDT",
      "created_at_utc": "2025-07-13T05:01:17Z",
      "description": null,
      "event_trigger": null,
      "event_trigger_draft": null,
      "executions_count": 0,
      "has_draft": false,
      "id": "01980228-ad8e-7049-8db0-551e461b6fc6",
      "key": "workflow_11",
      "last_published_at": null,
      "last_published_at_string": null,
      "last_published_at_utc": null,
      "match_conditions": null,
      "match_conditions_draft": null,
      "name": "Workflow 11",
      "object": "workflow",
      "on": false,
      "status": "off",
      "trigger_conditions": {},
      "trigger_conditions_draft": {},
      "updated_at": "2025-07-13T01:01:17-04:00",
      "updated_at_string": "Jul 13, 2025 01:01 am EDT",
      "updated_at_utc": "2025-07-13T05:01:17Z"
    },
    {
      "hashid": "eovaq",
      "actions_count": 0,
      "created_at": "2025-07-13T01:01:17-04:00",
      "created_at_string": "Jul 13, 2025 01:01 am EDT",
      "created_at_utc": "2025-07-13T05:01:17Z",
      "description": null,
      "event_trigger": null,
      "event_trigger_draft": null,
      "executions_count": 0,
      "has_draft": false,
      "id": "01980228-ad87-75a6-a001-d6676720f715",
      "key": "workflow_10",
      "last_published_at": null,
      "last_published_at_string": null,
      "last_published_at_utc": null,
      "match_conditions": null,
      "match_conditions_draft": null,
      "name": "Workflow 10",
      "object": "workflow",
      "on": false,
      "status": "off",
      "trigger_conditions": {},
      "trigger_conditions_draft": {},
      "updated_at": "2025-07-13T01:01:17-04:00",
      "updated_at_string": "Jul 13, 2025 01:01 am EDT",
      "updated_at_utc": "2025-07-13T05:01:17Z"
    }
  ],
  "meta": {
    "page_limit": 25,
    "has_next_page": false,
    "has_previous_page": false
  }
}