@apteva/integrations 0.15.10 → 0.15.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/http-executor.d.ts.map +1 -1
- package/dist/http-executor.js +62 -8
- package/dist/http-executor.js.map +1 -1
- package/dist/mcp-generator.js +24 -0
- package/dist/mcp-generator.js.map +1 -1
- package/dist/types.d.ts +4 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/apps/anthropic-admin.json +183 -0
- package/src/apps/aws-ses.json +1 -1
- package/src/apps/braintree.json +53 -0
- package/src/apps/bunny-stream.json +50 -28
- package/src/apps/ccbill.json +142 -0
- package/src/apps/close.json +238 -301
- package/src/apps/craftcloud.json +251 -202
- package/src/apps/dataforseo.json +1700 -2
- package/src/apps/deepgram.json +288 -1
- package/src/apps/elevenlabs.json +9 -0
- package/src/apps/gladia.json +158 -0
- package/src/apps/gmail.json +2 -5
- package/src/apps/gumroad.json +569 -0
- package/src/apps/imaterialise.json +171 -262
- package/src/apps/jlcpcb.json +43 -0
- package/src/apps/jungle-scout.json +166 -0
- package/src/apps/ko-fi.json +34 -0
- package/src/apps/lemon-squeezy.json +270 -0
- package/src/apps/mollie.json +219 -0
- package/src/apps/paddle.json +199 -9
- package/src/apps/payhip.json +162 -0
- package/src/apps/paystack.json +207 -0
- package/src/apps/pipedrive.json +221 -212
- package/src/apps/razorpay.json +207 -0
- package/src/apps/ringover.json +69 -0
- package/src/apps/runpod.json +727 -0
- package/src/apps/salesforce-crm.json +192 -233
- package/src/apps/sculpteo.json +98 -180
- package/src/apps/segpay.json +215 -0
- package/src/apps/shapeways.json +114 -136
- package/src/apps/slant3d.json +260 -168
- package/src/apps/soniox.json +194 -0
- package/src/apps/speechmatics.json +167 -0
- package/src/apps/stripe.json +1 -0
- package/src/apps/surfer.json +511 -0
- package/src/apps/twitter-api.json +14 -1
- package/src/apps/verotel.json +124 -0
- package/src/apps/whop.json +364 -0
- package/src/apps/zendesk-sell.json +248 -0
- package/src/apps/zendesk.json +190 -259
package/src/apps/zendesk.json
CHANGED
|
@@ -1,295 +1,226 @@
|
|
|
1
1
|
{
|
|
2
2
|
"slug": "zendesk",
|
|
3
|
-
"name": "Zendesk",
|
|
4
|
-
"description": "Zendesk
|
|
3
|
+
"name": "Zendesk Support",
|
|
4
|
+
"description": "Zendesk Support API for tickets, users, organizations, search, views, groups, macros, triggers, automations, ticket fields, and forms.",
|
|
5
5
|
"logo": "https://www.google.com/s2/favicons?domain=zendesk.com&sz=128",
|
|
6
|
-
"categories": [
|
|
7
|
-
|
|
8
|
-
"tickets",
|
|
9
|
-
"zendesk",
|
|
10
|
-
"helpdesk",
|
|
11
|
-
"crm"
|
|
12
|
-
],
|
|
13
|
-
"base_url": "{{subdomain}}.zendesk.com/api/v2",
|
|
6
|
+
"categories": ["customer-support", "tickets", "zendesk", "helpdesk", "crm"],
|
|
7
|
+
"base_url": "https://{{subdomain}}.zendesk.com/api/v2",
|
|
14
8
|
"auth": {
|
|
15
|
-
"types": [
|
|
16
|
-
"bearer"
|
|
17
|
-
],
|
|
9
|
+
"types": ["basic"],
|
|
18
10
|
"headers": {
|
|
19
|
-
"Authorization": "
|
|
11
|
+
"Authorization": "Basic {{basic_auth}}"
|
|
20
12
|
},
|
|
21
13
|
"credential_fields": [
|
|
22
14
|
{
|
|
23
|
-
"name": "
|
|
24
|
-
"label": "
|
|
15
|
+
"name": "subdomain",
|
|
16
|
+
"label": "Zendesk Subdomain",
|
|
17
|
+
"description": "Only the subdomain, for example acme for https://acme.zendesk.com."
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"name": "username",
|
|
21
|
+
"label": "Email/token",
|
|
22
|
+
"description": "Zendesk agent/admin email followed by /token, for example admin@example.com/token."
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"name": "password",
|
|
26
|
+
"label": "API Token",
|
|
27
|
+
"type": "password",
|
|
28
|
+
"description": "Zendesk API token."
|
|
25
29
|
}
|
|
26
30
|
]
|
|
27
31
|
},
|
|
32
|
+
"health_check": {
|
|
33
|
+
"tool": "list_users"
|
|
34
|
+
},
|
|
28
35
|
"tools": [
|
|
29
36
|
{
|
|
30
37
|
"name": "list_tickets",
|
|
31
|
-
"description": "List tickets
|
|
38
|
+
"description": "List tickets.",
|
|
32
39
|
"method": "GET",
|
|
33
|
-
"path": "/
|
|
34
|
-
"
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
},
|
|
45
|
-
"api_token": {
|
|
46
|
-
"type": "string",
|
|
47
|
-
"description": "API token"
|
|
48
|
-
},
|
|
49
|
-
"per_page": {
|
|
50
|
-
"type": "number",
|
|
51
|
-
"description": "Results per page (max 100)"
|
|
52
|
-
},
|
|
53
|
-
"page": {
|
|
54
|
-
"type": "number",
|
|
55
|
-
"description": "Page number"
|
|
56
|
-
},
|
|
57
|
-
"sort_by": {
|
|
58
|
-
"type": "string",
|
|
59
|
-
"description": "Sort field"
|
|
60
|
-
},
|
|
61
|
-
"sort_order": {
|
|
62
|
-
"type": "string",
|
|
63
|
-
"description": "Sort order: asc or desc"
|
|
64
|
-
}
|
|
65
|
-
},
|
|
66
|
-
"required": [
|
|
67
|
-
"subdomain",
|
|
68
|
-
"email",
|
|
69
|
-
"api_token"
|
|
70
|
-
]
|
|
71
|
-
}
|
|
40
|
+
"path": "/tickets.json",
|
|
41
|
+
"query_params": ["page", "per_page", "sort_by", "sort_order"],
|
|
42
|
+
"input_schema": {"type": "object", "properties": {"page": {"type": "number"}, "per_page": {"type": "number", "default": 100}, "sort_by": {"type": "string"}, "sort_order": {"type": "string"}}}
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"name": "get_ticket",
|
|
46
|
+
"description": "Get one ticket by ID.",
|
|
47
|
+
"method": "GET",
|
|
48
|
+
"path": "/tickets/{ticketId}.json",
|
|
49
|
+
"path_params": ["ticketId"],
|
|
50
|
+
"input_schema": {"type": "object", "properties": {"ticketId": {"type": "number"}}, "required": ["ticketId"]}
|
|
72
51
|
},
|
|
73
52
|
{
|
|
74
53
|
"name": "create_ticket",
|
|
75
|
-
"description": "Create a
|
|
54
|
+
"description": "Create a ticket. Pass body as the exact Zendesk payload, for example {\"ticket\":{\"subject\":\"...\",\"comment\":{\"body\":\"...\"}}}.",
|
|
76
55
|
"method": "POST",
|
|
77
|
-
"path": "/
|
|
78
|
-
"
|
|
79
|
-
|
|
80
|
-
"properties": {
|
|
81
|
-
"subdomain": {
|
|
82
|
-
"type": "string",
|
|
83
|
-
"description": "Zendesk subdomain"
|
|
84
|
-
},
|
|
85
|
-
"email": {
|
|
86
|
-
"type": "string",
|
|
87
|
-
"description": "Admin email"
|
|
88
|
-
},
|
|
89
|
-
"api_token": {
|
|
90
|
-
"type": "string",
|
|
91
|
-
"description": "API token"
|
|
92
|
-
},
|
|
93
|
-
"subject": {
|
|
94
|
-
"type": "string",
|
|
95
|
-
"description": "Ticket subject"
|
|
96
|
-
},
|
|
97
|
-
"description": {
|
|
98
|
-
"type": "string",
|
|
99
|
-
"description": "Ticket description"
|
|
100
|
-
},
|
|
101
|
-
"requester_email": {
|
|
102
|
-
"type": "string",
|
|
103
|
-
"description": "Requester email"
|
|
104
|
-
},
|
|
105
|
-
"priority": {
|
|
106
|
-
"type": "string",
|
|
107
|
-
"description": "Priority: urgent, high, normal, low"
|
|
108
|
-
},
|
|
109
|
-
"type": {
|
|
110
|
-
"type": "string",
|
|
111
|
-
"description": "Type: problem, incident, question, task"
|
|
112
|
-
},
|
|
113
|
-
"tags": {
|
|
114
|
-
"type": "array",
|
|
115
|
-
"description": "Tags to add"
|
|
116
|
-
}
|
|
117
|
-
},
|
|
118
|
-
"required": [
|
|
119
|
-
"subdomain",
|
|
120
|
-
"email",
|
|
121
|
-
"api_token",
|
|
122
|
-
"subject",
|
|
123
|
-
"description"
|
|
124
|
-
]
|
|
125
|
-
}
|
|
56
|
+
"path": "/tickets.json",
|
|
57
|
+
"body_root_param": "body",
|
|
58
|
+
"input_schema": {"type": "object", "properties": {"body": {"type": "object"}}, "required": ["body"]}
|
|
126
59
|
},
|
|
127
60
|
{
|
|
128
61
|
"name": "update_ticket",
|
|
129
|
-
"description": "Update
|
|
62
|
+
"description": "Update a ticket. Pass body as the exact Zendesk payload, for example {\"ticket\":{\"status\":\"solved\"}}.",
|
|
130
63
|
"method": "PUT",
|
|
131
|
-
"path": "/
|
|
132
|
-
"
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
"subdomain": {
|
|
136
|
-
"type": "string",
|
|
137
|
-
"description": "Zendesk subdomain"
|
|
138
|
-
},
|
|
139
|
-
"email": {
|
|
140
|
-
"type": "string",
|
|
141
|
-
"description": "Admin email"
|
|
142
|
-
},
|
|
143
|
-
"api_token": {
|
|
144
|
-
"type": "string",
|
|
145
|
-
"description": "API token"
|
|
146
|
-
},
|
|
147
|
-
"ticket_id": {
|
|
148
|
-
"type": "number",
|
|
149
|
-
"description": "Ticket ID"
|
|
150
|
-
},
|
|
151
|
-
"status": {
|
|
152
|
-
"type": "string",
|
|
153
|
-
"description": "New status"
|
|
154
|
-
},
|
|
155
|
-
"priority": {
|
|
156
|
-
"type": "string",
|
|
157
|
-
"description": "New priority"
|
|
158
|
-
},
|
|
159
|
-
"assignee_id": {
|
|
160
|
-
"type": "number",
|
|
161
|
-
"description": "Assignee user ID"
|
|
162
|
-
},
|
|
163
|
-
"comment": {
|
|
164
|
-
"type": "string",
|
|
165
|
-
"description": "Comment to add"
|
|
166
|
-
},
|
|
167
|
-
"public": {
|
|
168
|
-
"type": "boolean",
|
|
169
|
-
"description": "Make comment public"
|
|
170
|
-
}
|
|
171
|
-
},
|
|
172
|
-
"required": [
|
|
173
|
-
"subdomain",
|
|
174
|
-
"email",
|
|
175
|
-
"api_token",
|
|
176
|
-
"ticket_id"
|
|
177
|
-
]
|
|
178
|
-
}
|
|
64
|
+
"path": "/tickets/{ticketId}.json",
|
|
65
|
+
"path_params": ["ticketId"],
|
|
66
|
+
"body_root_param": "body",
|
|
67
|
+
"input_schema": {"type": "object", "properties": {"ticketId": {"type": "number"}, "body": {"type": "object"}}, "required": ["ticketId", "body"]}
|
|
179
68
|
},
|
|
180
69
|
{
|
|
181
|
-
"name": "
|
|
182
|
-
"description": "
|
|
70
|
+
"name": "delete_ticket",
|
|
71
|
+
"description": "Delete one ticket by ID.",
|
|
72
|
+
"method": "DELETE",
|
|
73
|
+
"path": "/tickets/{ticketId}.json",
|
|
74
|
+
"path_params": ["ticketId"],
|
|
75
|
+
"input_schema": {"type": "object", "properties": {"ticketId": {"type": "number"}}, "required": ["ticketId"]}
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"name": "list_ticket_comments",
|
|
79
|
+
"description": "List comments for a ticket.",
|
|
183
80
|
"method": "GET",
|
|
184
|
-
"path": "/
|
|
185
|
-
"
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
"subdomain": {
|
|
189
|
-
"type": "string",
|
|
190
|
-
"description": "Zendesk subdomain"
|
|
191
|
-
},
|
|
192
|
-
"email": {
|
|
193
|
-
"type": "string",
|
|
194
|
-
"description": "Admin email"
|
|
195
|
-
},
|
|
196
|
-
"api_token": {
|
|
197
|
-
"type": "string",
|
|
198
|
-
"description": "API token"
|
|
199
|
-
},
|
|
200
|
-
"ticket_id": {
|
|
201
|
-
"type": "number",
|
|
202
|
-
"description": "Ticket ID"
|
|
203
|
-
}
|
|
204
|
-
},
|
|
205
|
-
"required": [
|
|
206
|
-
"subdomain",
|
|
207
|
-
"email",
|
|
208
|
-
"api_token",
|
|
209
|
-
"ticket_id"
|
|
210
|
-
]
|
|
211
|
-
}
|
|
81
|
+
"path": "/tickets/{ticketId}/comments.json",
|
|
82
|
+
"path_params": ["ticketId"],
|
|
83
|
+
"query_params": ["page", "per_page"],
|
|
84
|
+
"input_schema": {"type": "object", "properties": {"ticketId": {"type": "number"}, "page": {"type": "number"}, "per_page": {"type": "number", "default": 100}}, "required": ["ticketId"]}
|
|
212
85
|
},
|
|
213
86
|
{
|
|
214
87
|
"name": "list_users",
|
|
215
|
-
"description": "List users
|
|
88
|
+
"description": "List users.",
|
|
216
89
|
"method": "GET",
|
|
217
|
-
"path": "/
|
|
218
|
-
"
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
90
|
+
"path": "/users.json",
|
|
91
|
+
"query_params": ["page", "per_page", "role"],
|
|
92
|
+
"input_schema": {"type": "object", "properties": {"page": {"type": "number"}, "per_page": {"type": "number", "default": 100}, "role": {"type": "string"}}}
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"name": "get_user",
|
|
96
|
+
"description": "Get one user by ID.",
|
|
97
|
+
"method": "GET",
|
|
98
|
+
"path": "/users/{userId}.json",
|
|
99
|
+
"path_params": ["userId"],
|
|
100
|
+
"input_schema": {"type": "object", "properties": {"userId": {"type": "number"}}, "required": ["userId"]}
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"name": "create_user",
|
|
104
|
+
"description": "Create a user. Pass body as the exact Zendesk payload, for example {\"user\":{\"name\":\"...\",\"email\":\"...\"}}.",
|
|
105
|
+
"method": "POST",
|
|
106
|
+
"path": "/users.json",
|
|
107
|
+
"body_root_param": "body",
|
|
108
|
+
"input_schema": {"type": "object", "properties": {"body": {"type": "object"}}, "required": ["body"]}
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"name": "update_user",
|
|
112
|
+
"description": "Update a user. Pass body as the exact Zendesk payload.",
|
|
113
|
+
"method": "PUT",
|
|
114
|
+
"path": "/users/{userId}.json",
|
|
115
|
+
"path_params": ["userId"],
|
|
116
|
+
"body_root_param": "body",
|
|
117
|
+
"input_schema": {"type": "object", "properties": {"userId": {"type": "number"}, "body": {"type": "object"}}, "required": ["userId", "body"]}
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"name": "list_organizations",
|
|
121
|
+
"description": "List organizations.",
|
|
122
|
+
"method": "GET",
|
|
123
|
+
"path": "/organizations.json",
|
|
124
|
+
"query_params": ["page", "per_page"],
|
|
125
|
+
"input_schema": {"type": "object", "properties": {"page": {"type": "number"}, "per_page": {"type": "number", "default": 100}}}
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"name": "get_organization",
|
|
129
|
+
"description": "Get one organization by ID.",
|
|
130
|
+
"method": "GET",
|
|
131
|
+
"path": "/organizations/{organizationId}.json",
|
|
132
|
+
"path_params": ["organizationId"],
|
|
133
|
+
"input_schema": {"type": "object", "properties": {"organizationId": {"type": "number"}}, "required": ["organizationId"]}
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"name": "create_organization",
|
|
137
|
+
"description": "Create an organization. Pass body as the exact Zendesk payload.",
|
|
138
|
+
"method": "POST",
|
|
139
|
+
"path": "/organizations.json",
|
|
140
|
+
"body_root_param": "body",
|
|
141
|
+
"input_schema": {"type": "object", "properties": {"body": {"type": "object"}}, "required": ["body"]}
|
|
252
142
|
},
|
|
253
143
|
{
|
|
254
144
|
"name": "search",
|
|
255
|
-
"description": "Search Zendesk
|
|
145
|
+
"description": "Search Zendesk. Example query: type:ticket status:open requester:alice@example.com.",
|
|
256
146
|
"method": "GET",
|
|
257
|
-
"path": "/search",
|
|
258
|
-
"
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
}
|
|
147
|
+
"path": "/search.json",
|
|
148
|
+
"query_params": ["query", "page", "per_page", "sort_by", "sort_order"],
|
|
149
|
+
"query_param_aliases": {"query": "query"},
|
|
150
|
+
"input_schema": {"type": "object", "properties": {"query": {"type": "string"}, "page": {"type": "number"}, "per_page": {"type": "number", "default": 100}, "sort_by": {"type": "string"}, "sort_order": {"type": "string"}}, "required": ["query"]}
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
"name": "list_ticket_fields",
|
|
154
|
+
"description": "List ticket fields.",
|
|
155
|
+
"method": "GET",
|
|
156
|
+
"path": "/ticket_fields.json",
|
|
157
|
+
"query_params": ["page", "per_page"],
|
|
158
|
+
"input_schema": {"type": "object", "properties": {"page": {"type": "number"}, "per_page": {"type": "number", "default": 100}}}
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
"name": "list_ticket_forms",
|
|
162
|
+
"description": "List ticket forms.",
|
|
163
|
+
"method": "GET",
|
|
164
|
+
"path": "/ticket_forms.json",
|
|
165
|
+
"query_params": ["page", "per_page"],
|
|
166
|
+
"input_schema": {"type": "object", "properties": {"page": {"type": "number"}, "per_page": {"type": "number", "default": 100}}}
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
"name": "list_groups",
|
|
170
|
+
"description": "List groups.",
|
|
171
|
+
"method": "GET",
|
|
172
|
+
"path": "/groups.json",
|
|
173
|
+
"query_params": ["page", "per_page"],
|
|
174
|
+
"input_schema": {"type": "object", "properties": {"page": {"type": "number"}, "per_page": {"type": "number", "default": 100}}}
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
"name": "list_views",
|
|
178
|
+
"description": "List views.",
|
|
179
|
+
"method": "GET",
|
|
180
|
+
"path": "/views.json",
|
|
181
|
+
"query_params": ["page", "per_page", "active"],
|
|
182
|
+
"input_schema": {"type": "object", "properties": {"page": {"type": "number"}, "per_page": {"type": "number", "default": 100}, "active": {"type": "boolean"}}}
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
"name": "list_view_tickets",
|
|
186
|
+
"description": "List tickets returned by a Zendesk view.",
|
|
187
|
+
"method": "GET",
|
|
188
|
+
"path": "/views/{viewId}/tickets.json",
|
|
189
|
+
"path_params": ["viewId"],
|
|
190
|
+
"query_params": ["page", "per_page", "sort_by", "sort_order"],
|
|
191
|
+
"input_schema": {"type": "object", "properties": {"viewId": {"type": "number"}, "page": {"type": "number"}, "per_page": {"type": "number", "default": 100}, "sort_by": {"type": "string"}, "sort_order": {"type": "string"}}, "required": ["viewId"]}
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
"name": "list_macros",
|
|
195
|
+
"description": "List macros.",
|
|
196
|
+
"method": "GET",
|
|
197
|
+
"path": "/macros.json",
|
|
198
|
+
"query_params": ["page", "per_page", "active"],
|
|
199
|
+
"input_schema": {"type": "object", "properties": {"page": {"type": "number"}, "per_page": {"type": "number", "default": 100}, "active": {"type": "boolean"}}}
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
"name": "list_triggers",
|
|
203
|
+
"description": "List triggers.",
|
|
204
|
+
"method": "GET",
|
|
205
|
+
"path": "/triggers.json",
|
|
206
|
+
"query_params": ["page", "per_page", "active"],
|
|
207
|
+
"input_schema": {"type": "object", "properties": {"page": {"type": "number"}, "per_page": {"type": "number", "default": 100}, "active": {"type": "boolean"}}}
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
"name": "list_automations",
|
|
211
|
+
"description": "List automations.",
|
|
212
|
+
"method": "GET",
|
|
213
|
+
"path": "/automations.json",
|
|
214
|
+
"query_params": ["page", "per_page", "active"],
|
|
215
|
+
"input_schema": {"type": "object", "properties": {"page": {"type": "number"}, "per_page": {"type": "number", "default": 100}, "active": {"type": "boolean"}}}
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
"name": "list_suspended_tickets",
|
|
219
|
+
"description": "List suspended tickets.",
|
|
220
|
+
"method": "GET",
|
|
221
|
+
"path": "/suspended_tickets.json",
|
|
222
|
+
"query_params": ["page", "per_page"],
|
|
223
|
+
"input_schema": {"type": "object", "properties": {"page": {"type": "number"}, "per_page": {"type": "number", "default": 100}}}
|
|
293
224
|
}
|
|
294
225
|
]
|
|
295
|
-
}
|
|
226
|
+
}
|