List triggers

List triggers

Endpoint

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

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)

Response

Returns successful.

Response Properties

collection array

No description available

meta object

No description available

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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
  "collection": [
    {
      "id": "01980228-a93d-7c3b-97e9-aeba6a285cf1",
      "created_at": "2025-07-13T01:01:15-04:00",
      "created_at_string": "Jul 13, 2025 01:01 am EDT",
      "created_at_utc": "2025-07-13T05:01:15Z",
      "data_input_schema": [
        {
          "variable": "user_name",
          "data_path": "user['primary']['name']",
          "display_label": "User name",
          "format": null,
          "groups": [],
          "list_values_variable": null,
          "object": "data_type",
          "required": true,
          "source": "trigger",
          "type": "String",
          "value": null
        },
        {
          "variable": "zip_code",
          "data_path": "addresses[0]['zip']",
          "display_label": "Zip code",
          "format": null,
          "groups": [],
          "list_values_variable": null,
          "object": "data_type",
          "required": true,
          "source": "trigger",
          "type": "String",
          "value": null
        },
        {
          "variable": "title",
          "data_path": "title",
          "display_label": "Title",
          "format": null,
          "groups": [],
          "list_values_variable": null,
          "object": "data_type",
          "required": true,
          "source": "trigger",
          "type": "String",
          "value": null
        }
      ],
      "description": "A new lead signs up",
      "event": "new_lead",
      "groups": [],
      "hook_id": "f8be405c-b163-4d45-9718-6c1eb1c15ef3",
      "icon": {},
      "object": "trigger",
      "on": true,
      "processed_count": 0,
      "title": "New Lead"
    },
    {
      "id": "01980228-a939-729e-818b-8204ad596a8f",
      "created_at": "2025-07-13T01:01:15-04:00",
      "created_at_string": "Jul 13, 2025 01:01 am EDT",
      "created_at_utc": "2025-07-13T05:01:15Z",
      "data_input_schema": [
        {
          "variable": "user_name",
          "data_path": "user['primary']['name']",
          "display_label": "User name",
          "format": null,
          "groups": [],
          "list_values_variable": null,
          "object": "data_type",
          "required": true,
          "source": "trigger",
          "type": "String",
          "value": null
        },
        {
          "variable": "zip_code",
          "data_path": "addresses[0]['zip']",
          "display_label": "Zip code",
          "format": null,
          "groups": [],
          "list_values_variable": null,
          "object": "data_type",
          "required": true,
          "source": "trigger",
          "type": "String",
          "value": null
        },
        {
          "variable": "title",
          "data_path": "title",
          "display_label": "Title",
          "format": null,
          "groups": [],
          "list_values_variable": null,
          "object": "data_type",
          "required": true,
          "source": "trigger",
          "type": "String",
          "value": null
        }
      ],
      "description": "A new lead signs up",
      "event": "new_lead",
      "groups": [],
      "hook_id": "fa448929-b0c3-4d04-9d74-dd3b31a3ab2d",
      "icon": {},
      "object": "trigger",
      "on": true,
      "processed_count": 0,
      "title": "New Lead"
    }
  ],
  "meta": {
    "page_limit": 25,
    "has_next_page": false,
    "has_previous_page": false
  }
}