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

user_key string, optional

Unique user identifier

is_template boolean, optional

Filter workflows by is_template value

Response

Returns successful.

Response Properties

collection array
meta object
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
{
  "collection": [
    {
      "id": "019add30-82e5-73cc-9e6b-7e772ece8357",
      "actions_count": 0,
      "created_at": "2025-12-01T22:52:15-05:00",
      "created_at_string": "Dec 01, 2025 10:52 pm EST",
      "created_at_utc": "2025-12-02T03:52:15Z",
      "description": null,
      "event_trigger": null,
      "event_trigger_draft": null,
      "executions_count": 0,
      "has_draft": false,
      "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-12-01T22:52:15-05:00",
      "updated_at_string": "Dec 01, 2025 10:52 pm EST",
      "updated_at_utc": "2025-12-02T03:52:15Z"
    },
    {
      "id": "019add30-82de-7008-98dc-af02433ecfd7",
      "actions_count": 0,
      "created_at": "2025-12-01T22:52:15-05:00",
      "created_at_string": "Dec 01, 2025 10:52 pm EST",
      "created_at_utc": "2025-12-02T03:52:15Z",
      "description": null,
      "event_trigger": null,
      "event_trigger_draft": null,
      "executions_count": 0,
      "has_draft": false,
      "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-12-01T22:52:15-05:00",
      "updated_at_string": "Dec 01, 2025 10:52 pm EST",
      "updated_at_utc": "2025-12-02T03:52:15Z"
    }
  ],
  "meta": {
    "page_limit": 25,
    "has_next_page": false,
    "has_previous_page": false
  }
}