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 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": "0198c2e9-c783-7180-808f-19c4849dd0c1",
      "actions_count": 0,
      "created_at": "2025-08-19T11:19:17-04:00",
      "created_at_string": "Aug 19, 2025 11:19 am EDT",
      "created_at_utc": "2025-08-19T15:19:17Z",
      "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-08-19T11:19:17-04:00",
      "updated_at_string": "Aug 19, 2025 11:19 am EDT",
      "updated_at_utc": "2025-08-19T15:19:17Z"
    },
    {
      "id": "0198c2e9-c77b-7d25-9037-07a189269535",
      "actions_count": 0,
      "created_at": "2025-08-19T11:19:17-04:00",
      "created_at_string": "Aug 19, 2025 11:19 am EDT",
      "created_at_utc": "2025-08-19T15:19:17Z",
      "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-08-19T11:19:17-04:00",
      "updated_at_string": "Aug 19, 2025 11:19 am EDT",
      "updated_at_utc": "2025-08-19T15:19:17Z"
    }
  ],
  "meta": {
    "page_limit": 25,
    "has_next_page": false,
    "has_previous_page": false
  }
}