List action types

List action types

Endpoint

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

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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
{
  "collection": [
    {
      "id": "01980228-9646-75b8-b833-5a38dc99e30a",
      "code": null,
      "code_draft": null,
      "created_at": "2025-07-13T01:01:11-04:00",
      "created_at_string": "Jul 13, 2025 01:01 am EDT",
      "created_at_utc": "2025-07-13T05:01:11Z",
      "description": "Send a message to a Slack channel",
      "form": [
        {
          "id": "field_1",
          "data": {
            "url": "https://embedworkflow.com/app/connect/options",
            "label_key": "name",
            "value_key": "id",
            "object_key": "channels",
            "parameters": {
              "types": "public_channel,private_channel",
              "exclude_archived": "true"
            },
            "target_url": "https://slack.com/api/conversations.list"
          },
          "description": "Select a channel to send the message to",
          "display_as_placeholder": false,
          "display_in_form": true,
          "label": "Channel",
          "name": "form[slack_channel]",
          "object": "field",
          "required": true,
          "type": "AsyncSelect"
        },
        {
          "id": "field_2",
          "data": {},
          "description": "The message text to send",
          "display_as_placeholder": false,
          "display_in_form": true,
          "label": "Message",
          "name": "form[slack_message_text]",
          "object": "field",
          "required": true,
          "type": "TextArea"
        },
        {
          "id": "field_3",
          "data": {},
          "description": "JSON array of Slack blocks for rich formatting (optional)",
          "display_as_placeholder": false,
          "display_in_form": true,
          "label": "Blocks JSON",
          "name": "form[slack_blocks]",
          "object": "field",
          "required": false,
          "type": "TextArea"
        }
      ],
      "form_draft": [],
      "groups": [],
      "has_draft": true,
      "headers": "Content-Type:application/json\nAuthorization:Bearer {{app_connection.bot_token}}",
      "headers_draft": null,
      "http_method": "post",
      "http_method_draft": null,
      "icon": {
        "url": "https://s3.us-east-1.amazonaws.com/cdn.ewf.to/apps/slack.svg"
      },
      "icon_draft": {},
      "last_published_at": null,
      "last_published_at_string": null,
      "last_published_at_utc": null,
      "name": "Send Message",
      "object": "action_type",
      "on": true,
      "params": "channel:{{form[slack_channel]}}\ntext:{{form[slack_message_text]}}\nblocks:{{form[slack_blocks]}}",
      "params_draft": null,
      "primary_category": "communication",
      "required_app_connection": "slack",
      "response_data_schema": [
        {
          "variable": "message_id",
          "data_path": "ts",
          "display_label": null,
          "format": null,
          "groups": null,
          "list_values_variable": null,
          "object": "data_type",
          "required": true,
          "source": "action_response",
          "type": "String",
          "value": null
        },
        {
          "variable": "channel_id",
          "data_path": "channel",
          "display_label": null,
          "format": null,
          "groups": null,
          "list_values_variable": null,
          "object": "data_type",
          "required": true,
          "source": "action_response",
          "type": "String",
          "value": null
        },
        {
          "variable": "message_text",
          "data_path": "message['text']",
          "display_label": null,
          "format": null,
          "groups": null,
          "list_values_variable": null,
          "object": "data_type",
          "required": true,
          "source": "action_response",
          "type": "String",
          "value": null
        },
        {
          "variable": "timestamp",
          "data_path": "ts",
          "display_label": null,
          "format": null,
          "groups": null,
          "list_values_variable": null,
          "object": "data_type",
          "required": true,
          "source": "action_response",
          "type": "Date",
          "value": null
        },
        {
          "variable": "is_successful",
          "data_path": "ok",
          "display_label": null,
          "format": null,
          "groups": null,
          "list_values_variable": null,
          "object": "data_type",
          "required": true,
          "source": "action_response",
          "type": "Boolean",
          "value": null
        }
      ],
      "response_data_schema_draft": [],
      "secondary_category": "productivity",
      "source": "Apps",
      "type": "CustomApiRequest",
      "updated_at": "2025-07-13T01:01:11-04:00",
      "updated_at_string": "Jul 13, 2025 01:01 am EDT",
      "updated_at_utc": "2025-07-13T05:01:11Z",
      "url": "https://slack.com/api/chat.postMessage",
      "url_draft": null
    },
    {
      "id": "01980228-9641-7a85-ac12-39f815878db5",
      "code": null,
      "code_draft": null,
      "created_at": "2025-07-13T01:01:11-04:00",
      "created_at_string": "Jul 13, 2025 01:01 am EDT",
      "created_at_utc": "2025-07-13T05:01:11Z",
      "description": "A simple action to do something useful",
      "form": [],
      "form_draft": [],
      "groups": [],
      "has_draft": true,
      "headers": "foo:bar",
      "headers_draft": null,
      "http_method": "post",
      "http_method_draft": null,
      "icon": {},
      "icon_draft": {},
      "last_published_at": null,
      "last_published_at_string": null,
      "last_published_at_utc": null,
      "name": "Api Request",
      "object": "action_type",
      "on": true,
      "params": "person[name]:Joe",
      "params_draft": null,
      "primary_category": null,
      "required_app_connection": null,
      "response_data_schema": [],
      "response_data_schema_draft": [],
      "secondary_category": null,
      "source": null,
      "type": "CustomApiRequest",
      "updated_at": "2025-07-13T01:01:11-04:00",
      "updated_at_string": "Jul 13, 2025 01:01 am EDT",
      "updated_at_utc": "2025-07-13T05:01:11Z",
      "url": "https://example.com",
      "url_draft": null
    }
  ],
  "meta": {
    "page_limit": 25,
    "has_next_page": false,
    "has_previous_page": false
  }
}