@openpets/quo 1.0.0
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/.env.example +7 -0
- package/CHANGELOG.md +5 -0
- package/README.md +50 -0
- package/commands.json +1096 -0
- package/index.ts +72 -0
- package/openapi-client.ts +187 -0
- package/openapi-tools.ts +2079 -0
- package/package.json +168 -0
package/commands.json
ADDED
|
@@ -0,0 +1,1096 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@openpets/quo",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "OpenPets plugin for the Quo REST API, generated from Quo's official OpenAPI specification.",
|
|
5
|
+
"tools": [
|
|
6
|
+
{
|
|
7
|
+
"name": "quo-get-call-recordings-v1",
|
|
8
|
+
"description": "Get recordings for a call",
|
|
9
|
+
"schema": {
|
|
10
|
+
"type": "object",
|
|
11
|
+
"properties": {
|
|
12
|
+
"callId": {
|
|
13
|
+
"type": "string",
|
|
14
|
+
"description": "The unique identifier of the call for which recordings are being retrieved.",
|
|
15
|
+
"optional": false
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
"required": [
|
|
19
|
+
"callId"
|
|
20
|
+
]
|
|
21
|
+
},
|
|
22
|
+
"search": {
|
|
23
|
+
"capabilities": [
|
|
24
|
+
"quo-get-call-recordings-v1",
|
|
25
|
+
"getcallrecordings",
|
|
26
|
+
"get",
|
|
27
|
+
"recordings",
|
|
28
|
+
"for",
|
|
29
|
+
"call",
|
|
30
|
+
"call-recordings",
|
|
31
|
+
"callid",
|
|
32
|
+
"calls"
|
|
33
|
+
],
|
|
34
|
+
"intents": []
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"name": "quo-list-calls-v1",
|
|
39
|
+
"description": "List calls",
|
|
40
|
+
"schema": {
|
|
41
|
+
"type": "object",
|
|
42
|
+
"properties": {
|
|
43
|
+
"phoneNumberId": {
|
|
44
|
+
"type": "string",
|
|
45
|
+
"description": "The unique identifier of the OpenPhone number associated with the call.",
|
|
46
|
+
"optional": false
|
|
47
|
+
},
|
|
48
|
+
"userId": {
|
|
49
|
+
"type": "string",
|
|
50
|
+
"description": "The unique identifier of the OpenPhone user who either placed or received the call. Defaults to the workspace owner.",
|
|
51
|
+
"optional": false
|
|
52
|
+
},
|
|
53
|
+
"participants": {
|
|
54
|
+
"type": "string",
|
|
55
|
+
"description": "The phone numbers of participants involved in the call conversation, excluding your OpenPhone number. Each number should contain the country code and conform to the E.164 format. Currently limited to one-to-one (1:1) conversations only.",
|
|
56
|
+
"optional": false
|
|
57
|
+
},
|
|
58
|
+
"since": {
|
|
59
|
+
"type": "string",
|
|
60
|
+
"description": "DEPRECATED, use \"createdAfter\" or \"createdBefore\" instead. \"since\" incorrectly behaves as \"createdBefore\" and will be removed in an upcoming release.",
|
|
61
|
+
"optional": false
|
|
62
|
+
},
|
|
63
|
+
"createdAfter": {
|
|
64
|
+
"type": "string",
|
|
65
|
+
"description": "Filter results to only include calls created after the specified date and time, in ISO 8601 format.",
|
|
66
|
+
"optional": false
|
|
67
|
+
},
|
|
68
|
+
"createdBefore": {
|
|
69
|
+
"type": "string",
|
|
70
|
+
"description": "Filter results to only include calls created before the specified date and time, in ISO 8601 format.",
|
|
71
|
+
"optional": false
|
|
72
|
+
},
|
|
73
|
+
"maxResults": {
|
|
74
|
+
"type": "number",
|
|
75
|
+
"description": "Maximum number of results to return per page.",
|
|
76
|
+
"optional": false
|
|
77
|
+
},
|
|
78
|
+
"pageToken": {
|
|
79
|
+
"type": "string",
|
|
80
|
+
"optional": false
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
"required": [
|
|
84
|
+
"phoneNumberId",
|
|
85
|
+
"participants",
|
|
86
|
+
"maxResults"
|
|
87
|
+
]
|
|
88
|
+
},
|
|
89
|
+
"search": {
|
|
90
|
+
"capabilities": [
|
|
91
|
+
"quo-list-calls-v1",
|
|
92
|
+
"listcalls",
|
|
93
|
+
"list",
|
|
94
|
+
"calls"
|
|
95
|
+
],
|
|
96
|
+
"intents": []
|
|
97
|
+
}
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"name": "quo-get-call-by-id-v1",
|
|
101
|
+
"description": "Get a call by ID",
|
|
102
|
+
"schema": {
|
|
103
|
+
"type": "object",
|
|
104
|
+
"properties": {
|
|
105
|
+
"callId": {
|
|
106
|
+
"type": "string",
|
|
107
|
+
"description": "Unique identifier of the call.",
|
|
108
|
+
"optional": false
|
|
109
|
+
}
|
|
110
|
+
},
|
|
111
|
+
"required": [
|
|
112
|
+
"callId"
|
|
113
|
+
]
|
|
114
|
+
},
|
|
115
|
+
"search": {
|
|
116
|
+
"capabilities": [
|
|
117
|
+
"quo-get-call-by-id-v1",
|
|
118
|
+
"getcallbyid",
|
|
119
|
+
"get",
|
|
120
|
+
"call",
|
|
121
|
+
"calls",
|
|
122
|
+
"callid"
|
|
123
|
+
],
|
|
124
|
+
"intents": []
|
|
125
|
+
}
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"name": "quo-get-call-summary-v1",
|
|
129
|
+
"description": "Get a summary for a call",
|
|
130
|
+
"schema": {
|
|
131
|
+
"type": "object",
|
|
132
|
+
"properties": {
|
|
133
|
+
"callId": {
|
|
134
|
+
"type": "string",
|
|
135
|
+
"description": "The unique identifier of the call associated with the summary.",
|
|
136
|
+
"optional": false
|
|
137
|
+
}
|
|
138
|
+
},
|
|
139
|
+
"required": [
|
|
140
|
+
"callId"
|
|
141
|
+
]
|
|
142
|
+
},
|
|
143
|
+
"search": {
|
|
144
|
+
"capabilities": [
|
|
145
|
+
"quo-get-call-summary-v1",
|
|
146
|
+
"getcallsummary",
|
|
147
|
+
"get",
|
|
148
|
+
"summary",
|
|
149
|
+
"for",
|
|
150
|
+
"call",
|
|
151
|
+
"call-summaries",
|
|
152
|
+
"callid",
|
|
153
|
+
"calls"
|
|
154
|
+
],
|
|
155
|
+
"intents": []
|
|
156
|
+
}
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
"name": "quo-get-call-transcript-v1",
|
|
160
|
+
"description": "Get a transcription for a call",
|
|
161
|
+
"schema": {
|
|
162
|
+
"type": "object",
|
|
163
|
+
"properties": {
|
|
164
|
+
"id": {
|
|
165
|
+
"type": "string",
|
|
166
|
+
"description": "Unique identifier of the call associated with this transcript.",
|
|
167
|
+
"optional": false
|
|
168
|
+
}
|
|
169
|
+
},
|
|
170
|
+
"required": [
|
|
171
|
+
"id"
|
|
172
|
+
]
|
|
173
|
+
},
|
|
174
|
+
"search": {
|
|
175
|
+
"capabilities": [
|
|
176
|
+
"quo-get-call-transcript-v1",
|
|
177
|
+
"getcalltranscript",
|
|
178
|
+
"get",
|
|
179
|
+
"transcription",
|
|
180
|
+
"for",
|
|
181
|
+
"call",
|
|
182
|
+
"call-transcripts",
|
|
183
|
+
"calls"
|
|
184
|
+
],
|
|
185
|
+
"intents": []
|
|
186
|
+
}
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
"name": "quo-get-call-voicemails-v1",
|
|
190
|
+
"description": "Get a voicemail for a call",
|
|
191
|
+
"schema": {
|
|
192
|
+
"type": "object",
|
|
193
|
+
"properties": {
|
|
194
|
+
"callId": {
|
|
195
|
+
"type": "string",
|
|
196
|
+
"description": "The unique identifier of the call for which a voicemail is being retrieved.",
|
|
197
|
+
"optional": false
|
|
198
|
+
}
|
|
199
|
+
},
|
|
200
|
+
"required": [
|
|
201
|
+
"callId"
|
|
202
|
+
]
|
|
203
|
+
},
|
|
204
|
+
"search": {
|
|
205
|
+
"capabilities": [
|
|
206
|
+
"quo-get-call-voicemails-v1",
|
|
207
|
+
"getcallvoicemails",
|
|
208
|
+
"get",
|
|
209
|
+
"voicemail",
|
|
210
|
+
"for",
|
|
211
|
+
"call",
|
|
212
|
+
"call-voicemails",
|
|
213
|
+
"callid",
|
|
214
|
+
"calls"
|
|
215
|
+
],
|
|
216
|
+
"intents": []
|
|
217
|
+
}
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
"name": "quo-get-contact-custom-fields-v1",
|
|
221
|
+
"description": "Get contact custom fields",
|
|
222
|
+
"schema": {
|
|
223
|
+
"type": "object",
|
|
224
|
+
"properties": {}
|
|
225
|
+
},
|
|
226
|
+
"search": {
|
|
227
|
+
"capabilities": [
|
|
228
|
+
"quo-get-contact-custom-fields-v1",
|
|
229
|
+
"getcontactcustomfields",
|
|
230
|
+
"get",
|
|
231
|
+
"contact",
|
|
232
|
+
"custom",
|
|
233
|
+
"fields",
|
|
234
|
+
"contact-custom-fields"
|
|
235
|
+
],
|
|
236
|
+
"intents": []
|
|
237
|
+
}
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
"name": "quo-list-contacts-v1",
|
|
241
|
+
"description": "List contacts",
|
|
242
|
+
"schema": {
|
|
243
|
+
"type": "object",
|
|
244
|
+
"properties": {
|
|
245
|
+
"externalIds": {
|
|
246
|
+
"type": "string",
|
|
247
|
+
"description": "Optional list of unique identifiers from an external system used to retrieve specific contacts. When provided, the result set is limited to contacts associated with the provided `externalIds`. These IDs must match those supplied during contact creation via the \"Create Contacts\" endpoint. When omitted, returns all contacts for the organization. Use this parameter to cross-reference and fetch contacts linked to external systems.",
|
|
248
|
+
"optional": false
|
|
249
|
+
},
|
|
250
|
+
"sources": {
|
|
251
|
+
"type": "string",
|
|
252
|
+
"optional": false
|
|
253
|
+
},
|
|
254
|
+
"maxResults": {
|
|
255
|
+
"type": "number",
|
|
256
|
+
"description": "Maximum number of results to return per page.",
|
|
257
|
+
"optional": false
|
|
258
|
+
},
|
|
259
|
+
"pageToken": {
|
|
260
|
+
"type": "string",
|
|
261
|
+
"optional": false
|
|
262
|
+
}
|
|
263
|
+
},
|
|
264
|
+
"required": [
|
|
265
|
+
"maxResults"
|
|
266
|
+
]
|
|
267
|
+
},
|
|
268
|
+
"search": {
|
|
269
|
+
"capabilities": [
|
|
270
|
+
"quo-list-contacts-v1",
|
|
271
|
+
"listcontacts",
|
|
272
|
+
"list",
|
|
273
|
+
"contacts"
|
|
274
|
+
],
|
|
275
|
+
"intents": []
|
|
276
|
+
}
|
|
277
|
+
},
|
|
278
|
+
{
|
|
279
|
+
"name": "quo-create-contact-v1",
|
|
280
|
+
"description": "Create a contact",
|
|
281
|
+
"schema": {
|
|
282
|
+
"type": "object",
|
|
283
|
+
"properties": {
|
|
284
|
+
"defaultFields": {
|
|
285
|
+
"type": "string",
|
|
286
|
+
"description": "JSON array",
|
|
287
|
+
"optional": true
|
|
288
|
+
},
|
|
289
|
+
"customFields": {
|
|
290
|
+
"type": "string",
|
|
291
|
+
"description": "JSON array",
|
|
292
|
+
"optional": false
|
|
293
|
+
},
|
|
294
|
+
"createdByUserId": {
|
|
295
|
+
"type": "string",
|
|
296
|
+
"description": "The unique identifier of the user who created the contact.",
|
|
297
|
+
"optional": false
|
|
298
|
+
},
|
|
299
|
+
"source": {
|
|
300
|
+
"type": "string",
|
|
301
|
+
"description": "The contact's source. Defaults to `null` for contacts created in the UI. Defaults to `public-api` for contacts created via the public API. Cannot be one of the following reserved words: `openphone`, `device`, `csv`, `zapier`, `google-people`, `other` or start with one of the following reserved prefixes: `openphone`, `csv`.",
|
|
302
|
+
"optional": false
|
|
303
|
+
},
|
|
304
|
+
"sourceUrl": {
|
|
305
|
+
"type": "string",
|
|
306
|
+
"description": "A link to the contact in the source system.",
|
|
307
|
+
"optional": false
|
|
308
|
+
},
|
|
309
|
+
"externalId": {
|
|
310
|
+
"type": "string",
|
|
311
|
+
"optional": false
|
|
312
|
+
}
|
|
313
|
+
},
|
|
314
|
+
"required": [
|
|
315
|
+
"defaultFields"
|
|
316
|
+
]
|
|
317
|
+
},
|
|
318
|
+
"search": {
|
|
319
|
+
"capabilities": [
|
|
320
|
+
"quo-create-contact-v1",
|
|
321
|
+
"createcontact",
|
|
322
|
+
"create",
|
|
323
|
+
"contact",
|
|
324
|
+
"contacts"
|
|
325
|
+
],
|
|
326
|
+
"intents": []
|
|
327
|
+
}
|
|
328
|
+
},
|
|
329
|
+
{
|
|
330
|
+
"name": "quo-get-contact-by-id-v1",
|
|
331
|
+
"description": "Get a contact by ID",
|
|
332
|
+
"schema": {
|
|
333
|
+
"type": "object",
|
|
334
|
+
"properties": {
|
|
335
|
+
"id": {
|
|
336
|
+
"type": "string",
|
|
337
|
+
"description": "The unique identifier of the contact.",
|
|
338
|
+
"optional": false
|
|
339
|
+
}
|
|
340
|
+
},
|
|
341
|
+
"required": [
|
|
342
|
+
"id"
|
|
343
|
+
]
|
|
344
|
+
},
|
|
345
|
+
"search": {
|
|
346
|
+
"capabilities": [
|
|
347
|
+
"quo-get-contact-by-id-v1",
|
|
348
|
+
"getcontactbyid",
|
|
349
|
+
"get",
|
|
350
|
+
"contact",
|
|
351
|
+
"contacts"
|
|
352
|
+
],
|
|
353
|
+
"intents": []
|
|
354
|
+
}
|
|
355
|
+
},
|
|
356
|
+
{
|
|
357
|
+
"name": "quo-update-contact-by-id-v1",
|
|
358
|
+
"description": "Update a contact by ID",
|
|
359
|
+
"schema": {
|
|
360
|
+
"type": "object",
|
|
361
|
+
"properties": {
|
|
362
|
+
"id": {
|
|
363
|
+
"type": "string",
|
|
364
|
+
"description": "The unique identifier of the contact.",
|
|
365
|
+
"optional": false
|
|
366
|
+
},
|
|
367
|
+
"externalId": {
|
|
368
|
+
"type": "string",
|
|
369
|
+
"optional": false
|
|
370
|
+
},
|
|
371
|
+
"source": {
|
|
372
|
+
"type": "string",
|
|
373
|
+
"optional": false
|
|
374
|
+
},
|
|
375
|
+
"sourceUrl": {
|
|
376
|
+
"type": "string",
|
|
377
|
+
"optional": false
|
|
378
|
+
},
|
|
379
|
+
"defaultFields": {
|
|
380
|
+
"type": "string",
|
|
381
|
+
"description": "JSON array",
|
|
382
|
+
"optional": true
|
|
383
|
+
},
|
|
384
|
+
"customFields": {
|
|
385
|
+
"type": "string",
|
|
386
|
+
"description": "JSON array",
|
|
387
|
+
"optional": false
|
|
388
|
+
}
|
|
389
|
+
},
|
|
390
|
+
"required": [
|
|
391
|
+
"id"
|
|
392
|
+
]
|
|
393
|
+
},
|
|
394
|
+
"search": {
|
|
395
|
+
"capabilities": [
|
|
396
|
+
"quo-update-contact-by-id-v1",
|
|
397
|
+
"updatecontactbyid",
|
|
398
|
+
"update",
|
|
399
|
+
"contact",
|
|
400
|
+
"contacts"
|
|
401
|
+
],
|
|
402
|
+
"intents": []
|
|
403
|
+
}
|
|
404
|
+
},
|
|
405
|
+
{
|
|
406
|
+
"name": "quo-delete-contact-v1",
|
|
407
|
+
"description": "Delete a contact",
|
|
408
|
+
"schema": {
|
|
409
|
+
"type": "object",
|
|
410
|
+
"properties": {
|
|
411
|
+
"id": {
|
|
412
|
+
"type": "string",
|
|
413
|
+
"description": "The unique identifier of the contact.",
|
|
414
|
+
"optional": false
|
|
415
|
+
}
|
|
416
|
+
},
|
|
417
|
+
"required": [
|
|
418
|
+
"id"
|
|
419
|
+
]
|
|
420
|
+
},
|
|
421
|
+
"search": {
|
|
422
|
+
"capabilities": [
|
|
423
|
+
"quo-delete-contact-v1",
|
|
424
|
+
"deletecontact",
|
|
425
|
+
"delete",
|
|
426
|
+
"contact",
|
|
427
|
+
"contacts"
|
|
428
|
+
],
|
|
429
|
+
"intents": []
|
|
430
|
+
}
|
|
431
|
+
},
|
|
432
|
+
{
|
|
433
|
+
"name": "quo-list-conversations-v1",
|
|
434
|
+
"description": "List Conversations",
|
|
435
|
+
"schema": {
|
|
436
|
+
"type": "object",
|
|
437
|
+
"properties": {
|
|
438
|
+
"phoneNumber": {
|
|
439
|
+
"type": "string",
|
|
440
|
+
"description": "DEPRECATED, use `phoneNumbers` instead. If both `phoneNumber` and `phoneNumbers` are provided, `phoneNumbers` will be used. Filters results to only include conversations with the specified OpenPhone phone number. Can be either your OpenPhone phone number ID or the full phone number in E.164 format.",
|
|
441
|
+
"optional": false
|
|
442
|
+
},
|
|
443
|
+
"phoneNumbers": {
|
|
444
|
+
"type": "string",
|
|
445
|
+
"description": "Filters results to only include conversations with the specified OpenPhone phone numbers. Each item can be either an OpenPhone phone number ID or a full phone number in E.164 format.",
|
|
446
|
+
"optional": false
|
|
447
|
+
},
|
|
448
|
+
"userId": {
|
|
449
|
+
"type": "string",
|
|
450
|
+
"description": "The unique identifier of the user the making the request. Used to filter results to only include the user's conversations.",
|
|
451
|
+
"optional": false
|
|
452
|
+
},
|
|
453
|
+
"createdAfter": {
|
|
454
|
+
"type": "string",
|
|
455
|
+
"description": "Filter results to only include conversations created after the specified date and time, in ISO_8601 format.",
|
|
456
|
+
"optional": false
|
|
457
|
+
},
|
|
458
|
+
"createdBefore": {
|
|
459
|
+
"type": "string",
|
|
460
|
+
"description": "Filter results to only include conversations created before the specified date and time, in ISO_8601 format.",
|
|
461
|
+
"optional": false
|
|
462
|
+
},
|
|
463
|
+
"excludeInactive": {
|
|
464
|
+
"type": "boolean",
|
|
465
|
+
"description": "Exclude inactive conversations from the results.",
|
|
466
|
+
"optional": false
|
|
467
|
+
},
|
|
468
|
+
"updatedAfter": {
|
|
469
|
+
"type": "string",
|
|
470
|
+
"description": "Filter results to only include conversations updated after the specified date and time, in ISO_8601 format.",
|
|
471
|
+
"optional": false
|
|
472
|
+
},
|
|
473
|
+
"updatedBefore": {
|
|
474
|
+
"type": "string",
|
|
475
|
+
"description": "Filter results to only include conversations updated before the specified date and time, in ISO_8601 format.",
|
|
476
|
+
"optional": false
|
|
477
|
+
},
|
|
478
|
+
"maxResults": {
|
|
479
|
+
"type": "number",
|
|
480
|
+
"description": "Maximum number of results to return per page.",
|
|
481
|
+
"optional": false
|
|
482
|
+
},
|
|
483
|
+
"pageToken": {
|
|
484
|
+
"type": "string",
|
|
485
|
+
"optional": false
|
|
486
|
+
}
|
|
487
|
+
},
|
|
488
|
+
"required": [
|
|
489
|
+
"maxResults"
|
|
490
|
+
]
|
|
491
|
+
},
|
|
492
|
+
"search": {
|
|
493
|
+
"capabilities": [
|
|
494
|
+
"quo-list-conversations-v1",
|
|
495
|
+
"listconversations",
|
|
496
|
+
"list",
|
|
497
|
+
"conversations"
|
|
498
|
+
],
|
|
499
|
+
"intents": []
|
|
500
|
+
}
|
|
501
|
+
},
|
|
502
|
+
{
|
|
503
|
+
"name": "quo-list-messages-v1",
|
|
504
|
+
"description": "List messages",
|
|
505
|
+
"schema": {
|
|
506
|
+
"type": "object",
|
|
507
|
+
"properties": {
|
|
508
|
+
"phoneNumberId": {
|
|
509
|
+
"type": "string",
|
|
510
|
+
"description": "The unique identifier of the OpenPhone number used to send or receive the messages. PhoneNumberID can be retrieved via the Get Phone Numbers endpoint.",
|
|
511
|
+
"optional": false
|
|
512
|
+
},
|
|
513
|
+
"userId": {
|
|
514
|
+
"type": "string",
|
|
515
|
+
"description": "The unique identifier of the user the message was sent from.",
|
|
516
|
+
"optional": false
|
|
517
|
+
},
|
|
518
|
+
"participants": {
|
|
519
|
+
"type": "string",
|
|
520
|
+
"description": "Array of phone numbers involved in the conversation, excluding your OpenPhone number, in E.164 format.",
|
|
521
|
+
"optional": false
|
|
522
|
+
},
|
|
523
|
+
"since": {
|
|
524
|
+
"type": "string",
|
|
525
|
+
"description": "DEPRECATED, use \"createdAfter\" or \"createdBefore\" instead. \"since\" currently behaves as \"createdBefore\" and will be removed in an upcoming release.",
|
|
526
|
+
"optional": false
|
|
527
|
+
},
|
|
528
|
+
"createdAfter": {
|
|
529
|
+
"type": "string",
|
|
530
|
+
"description": "Filter results to only include messages created after the specified date and time, in ISO_8601 format.",
|
|
531
|
+
"optional": false
|
|
532
|
+
},
|
|
533
|
+
"createdBefore": {
|
|
534
|
+
"type": "string",
|
|
535
|
+
"description": "Filter results to only include messages created before the specified date and time, in ISO_8601 format.",
|
|
536
|
+
"optional": false
|
|
537
|
+
},
|
|
538
|
+
"maxResults": {
|
|
539
|
+
"type": "number",
|
|
540
|
+
"description": "Maximum number of results to return per page.",
|
|
541
|
+
"optional": false
|
|
542
|
+
},
|
|
543
|
+
"pageToken": {
|
|
544
|
+
"type": "string",
|
|
545
|
+
"optional": false
|
|
546
|
+
}
|
|
547
|
+
},
|
|
548
|
+
"required": [
|
|
549
|
+
"phoneNumberId",
|
|
550
|
+
"participants",
|
|
551
|
+
"maxResults"
|
|
552
|
+
]
|
|
553
|
+
},
|
|
554
|
+
"search": {
|
|
555
|
+
"capabilities": [
|
|
556
|
+
"quo-list-messages-v1",
|
|
557
|
+
"listmessages",
|
|
558
|
+
"list",
|
|
559
|
+
"messages"
|
|
560
|
+
],
|
|
561
|
+
"intents": []
|
|
562
|
+
}
|
|
563
|
+
},
|
|
564
|
+
{
|
|
565
|
+
"name": "quo-send-message-v1",
|
|
566
|
+
"description": "Send a text message",
|
|
567
|
+
"schema": {
|
|
568
|
+
"type": "object",
|
|
569
|
+
"properties": {
|
|
570
|
+
"content": {
|
|
571
|
+
"type": "string",
|
|
572
|
+
"description": "The text content of the message to be sent.",
|
|
573
|
+
"optional": false
|
|
574
|
+
},
|
|
575
|
+
"phoneNumberId": {
|
|
576
|
+
"type": "string",
|
|
577
|
+
"description": "DEPRECATED, use \"from\" instead. OpenPhone phone number ID to send a message from",
|
|
578
|
+
"optional": false
|
|
579
|
+
},
|
|
580
|
+
"from": {
|
|
581
|
+
"type": "string",
|
|
582
|
+
"optional": false
|
|
583
|
+
},
|
|
584
|
+
"to": {
|
|
585
|
+
"type": "string",
|
|
586
|
+
"description": "JSON array",
|
|
587
|
+
"optional": false
|
|
588
|
+
},
|
|
589
|
+
"userId": {
|
|
590
|
+
"type": "string",
|
|
591
|
+
"description": "The unique identifier of the OpenPhone user sending the message. If not provided, defaults to the phone number owner.",
|
|
592
|
+
"optional": false
|
|
593
|
+
},
|
|
594
|
+
"setInboxStatus": {
|
|
595
|
+
"type": "string",
|
|
596
|
+
"enum": [
|
|
597
|
+
"done"
|
|
598
|
+
],
|
|
599
|
+
"description": "Used to set the status of the related OpenPhone inbox conversation. The default behavior without setting this parameter will be for the message sent to show up as an open conversation in the user's inbox. Setting the parameter to `'done'` would move the conversation to the Done inbox view.",
|
|
600
|
+
"optional": false
|
|
601
|
+
}
|
|
602
|
+
},
|
|
603
|
+
"required": [
|
|
604
|
+
"content",
|
|
605
|
+
"from",
|
|
606
|
+
"to"
|
|
607
|
+
]
|
|
608
|
+
},
|
|
609
|
+
"search": {
|
|
610
|
+
"capabilities": [
|
|
611
|
+
"quo-send-message-v1",
|
|
612
|
+
"sendmessage",
|
|
613
|
+
"send",
|
|
614
|
+
"text",
|
|
615
|
+
"message",
|
|
616
|
+
"messages"
|
|
617
|
+
],
|
|
618
|
+
"intents": []
|
|
619
|
+
}
|
|
620
|
+
},
|
|
621
|
+
{
|
|
622
|
+
"name": "quo-get-message-by-id-v1",
|
|
623
|
+
"description": "Get a message by ID",
|
|
624
|
+
"schema": {
|
|
625
|
+
"type": "object",
|
|
626
|
+
"properties": {
|
|
627
|
+
"id": {
|
|
628
|
+
"type": "string",
|
|
629
|
+
"description": "The unique identifier of a message",
|
|
630
|
+
"optional": false
|
|
631
|
+
}
|
|
632
|
+
},
|
|
633
|
+
"required": [
|
|
634
|
+
"id"
|
|
635
|
+
]
|
|
636
|
+
},
|
|
637
|
+
"search": {
|
|
638
|
+
"capabilities": [
|
|
639
|
+
"quo-get-message-by-id-v1",
|
|
640
|
+
"getmessagebyid",
|
|
641
|
+
"get",
|
|
642
|
+
"message",
|
|
643
|
+
"messages"
|
|
644
|
+
],
|
|
645
|
+
"intents": []
|
|
646
|
+
}
|
|
647
|
+
},
|
|
648
|
+
{
|
|
649
|
+
"name": "quo-list-phone-numbers-v1",
|
|
650
|
+
"description": "List phone numbers",
|
|
651
|
+
"schema": {
|
|
652
|
+
"type": "object",
|
|
653
|
+
"properties": {
|
|
654
|
+
"userId": {
|
|
655
|
+
"type": "string",
|
|
656
|
+
"description": "Filter results to return only phone numbers associated with the specified user\"s unique identifier.",
|
|
657
|
+
"optional": false
|
|
658
|
+
}
|
|
659
|
+
}
|
|
660
|
+
},
|
|
661
|
+
"search": {
|
|
662
|
+
"capabilities": [
|
|
663
|
+
"quo-list-phone-numbers-v1",
|
|
664
|
+
"listphonenumbers",
|
|
665
|
+
"list",
|
|
666
|
+
"phone",
|
|
667
|
+
"numbers",
|
|
668
|
+
"phone-numbers"
|
|
669
|
+
],
|
|
670
|
+
"intents": []
|
|
671
|
+
}
|
|
672
|
+
},
|
|
673
|
+
{
|
|
674
|
+
"name": "quo-get-phone-number-by-id-v1",
|
|
675
|
+
"description": "Get a phone number by ID",
|
|
676
|
+
"schema": {
|
|
677
|
+
"type": "object",
|
|
678
|
+
"properties": {
|
|
679
|
+
"phoneNumberId": {
|
|
680
|
+
"type": "string",
|
|
681
|
+
"description": "Unique identifier of the phone number.",
|
|
682
|
+
"optional": false
|
|
683
|
+
}
|
|
684
|
+
},
|
|
685
|
+
"required": [
|
|
686
|
+
"phoneNumberId"
|
|
687
|
+
]
|
|
688
|
+
},
|
|
689
|
+
"search": {
|
|
690
|
+
"capabilities": [
|
|
691
|
+
"quo-get-phone-number-by-id-v1",
|
|
692
|
+
"getphonenumberbyid",
|
|
693
|
+
"get",
|
|
694
|
+
"phone",
|
|
695
|
+
"number",
|
|
696
|
+
"phone-numbers",
|
|
697
|
+
"phonenumberid",
|
|
698
|
+
"numbers"
|
|
699
|
+
],
|
|
700
|
+
"intents": []
|
|
701
|
+
}
|
|
702
|
+
},
|
|
703
|
+
{
|
|
704
|
+
"name": "quo-list-users-v1",
|
|
705
|
+
"description": "List users",
|
|
706
|
+
"schema": {
|
|
707
|
+
"type": "object",
|
|
708
|
+
"properties": {
|
|
709
|
+
"maxResults": {
|
|
710
|
+
"type": "number",
|
|
711
|
+
"description": "Maximum number of results to return per page.",
|
|
712
|
+
"optional": false
|
|
713
|
+
},
|
|
714
|
+
"pageToken": {
|
|
715
|
+
"type": "string",
|
|
716
|
+
"optional": false
|
|
717
|
+
}
|
|
718
|
+
},
|
|
719
|
+
"required": [
|
|
720
|
+
"maxResults"
|
|
721
|
+
]
|
|
722
|
+
},
|
|
723
|
+
"search": {
|
|
724
|
+
"capabilities": [
|
|
725
|
+
"quo-list-users-v1",
|
|
726
|
+
"listusers",
|
|
727
|
+
"list",
|
|
728
|
+
"users"
|
|
729
|
+
],
|
|
730
|
+
"intents": []
|
|
731
|
+
}
|
|
732
|
+
},
|
|
733
|
+
{
|
|
734
|
+
"name": "quo-get-user-by-id-v1",
|
|
735
|
+
"description": "Get a user by ID",
|
|
736
|
+
"schema": {
|
|
737
|
+
"type": "object",
|
|
738
|
+
"properties": {
|
|
739
|
+
"userId": {
|
|
740
|
+
"type": "string",
|
|
741
|
+
"description": "The unique identifier of the user being retrieved.",
|
|
742
|
+
"optional": false
|
|
743
|
+
}
|
|
744
|
+
},
|
|
745
|
+
"required": [
|
|
746
|
+
"userId"
|
|
747
|
+
]
|
|
748
|
+
},
|
|
749
|
+
"search": {
|
|
750
|
+
"capabilities": [
|
|
751
|
+
"quo-get-user-by-id-v1",
|
|
752
|
+
"getuserbyid",
|
|
753
|
+
"get",
|
|
754
|
+
"user",
|
|
755
|
+
"users",
|
|
756
|
+
"userid"
|
|
757
|
+
],
|
|
758
|
+
"intents": []
|
|
759
|
+
}
|
|
760
|
+
},
|
|
761
|
+
{
|
|
762
|
+
"name": "quo-list-webhooks-v1",
|
|
763
|
+
"description": "Lists all webhooks",
|
|
764
|
+
"schema": {
|
|
765
|
+
"type": "object",
|
|
766
|
+
"properties": {
|
|
767
|
+
"userId": {
|
|
768
|
+
"type": "string",
|
|
769
|
+
"description": "The unique identifier the user. Defaults to the workspace owner.",
|
|
770
|
+
"optional": false
|
|
771
|
+
}
|
|
772
|
+
}
|
|
773
|
+
},
|
|
774
|
+
"search": {
|
|
775
|
+
"capabilities": [
|
|
776
|
+
"quo-list-webhooks-v1",
|
|
777
|
+
"listwebhooks",
|
|
778
|
+
"lists",
|
|
779
|
+
"all",
|
|
780
|
+
"webhooks"
|
|
781
|
+
],
|
|
782
|
+
"intents": []
|
|
783
|
+
}
|
|
784
|
+
},
|
|
785
|
+
{
|
|
786
|
+
"name": "quo-get-webhook-by-id-v1",
|
|
787
|
+
"description": "Get a webhook by ID",
|
|
788
|
+
"schema": {
|
|
789
|
+
"type": "object",
|
|
790
|
+
"properties": {
|
|
791
|
+
"id": {
|
|
792
|
+
"type": "string",
|
|
793
|
+
"description": "The unique identifier of a webhook",
|
|
794
|
+
"optional": false
|
|
795
|
+
}
|
|
796
|
+
},
|
|
797
|
+
"required": [
|
|
798
|
+
"id"
|
|
799
|
+
]
|
|
800
|
+
},
|
|
801
|
+
"search": {
|
|
802
|
+
"capabilities": [
|
|
803
|
+
"quo-get-webhook-by-id-v1",
|
|
804
|
+
"getwebhookbyid",
|
|
805
|
+
"get",
|
|
806
|
+
"webhook",
|
|
807
|
+
"webhooks"
|
|
808
|
+
],
|
|
809
|
+
"intents": []
|
|
810
|
+
}
|
|
811
|
+
},
|
|
812
|
+
{
|
|
813
|
+
"name": "quo-delete-webhook-by-id-v1",
|
|
814
|
+
"description": "Delete a webhook by ID",
|
|
815
|
+
"schema": {
|
|
816
|
+
"type": "object",
|
|
817
|
+
"properties": {
|
|
818
|
+
"id": {
|
|
819
|
+
"type": "string",
|
|
820
|
+
"description": "The unique identifier of a webhook",
|
|
821
|
+
"optional": false
|
|
822
|
+
}
|
|
823
|
+
},
|
|
824
|
+
"required": [
|
|
825
|
+
"id"
|
|
826
|
+
]
|
|
827
|
+
},
|
|
828
|
+
"search": {
|
|
829
|
+
"capabilities": [
|
|
830
|
+
"quo-delete-webhook-by-id-v1",
|
|
831
|
+
"deletewebhookbyid",
|
|
832
|
+
"delete",
|
|
833
|
+
"webhook",
|
|
834
|
+
"webhooks"
|
|
835
|
+
],
|
|
836
|
+
"intents": []
|
|
837
|
+
}
|
|
838
|
+
},
|
|
839
|
+
{
|
|
840
|
+
"name": "quo-create-message-webhook-v1",
|
|
841
|
+
"description": "Create a new webhook for messages",
|
|
842
|
+
"schema": {
|
|
843
|
+
"type": "object",
|
|
844
|
+
"properties": {
|
|
845
|
+
"events": {
|
|
846
|
+
"type": "string",
|
|
847
|
+
"optional": false
|
|
848
|
+
},
|
|
849
|
+
"label": {
|
|
850
|
+
"type": "string",
|
|
851
|
+
"description": "Webhook's label",
|
|
852
|
+
"optional": false
|
|
853
|
+
},
|
|
854
|
+
"resourceIds": {
|
|
855
|
+
"type": "string",
|
|
856
|
+
"optional": false
|
|
857
|
+
},
|
|
858
|
+
"status": {
|
|
859
|
+
"type": "string",
|
|
860
|
+
"enum": [
|
|
861
|
+
"enabled",
|
|
862
|
+
"disabled"
|
|
863
|
+
],
|
|
864
|
+
"description": "The status of the webhook.",
|
|
865
|
+
"optional": false
|
|
866
|
+
},
|
|
867
|
+
"url": {
|
|
868
|
+
"type": "string",
|
|
869
|
+
"description": "The endpoint that receives events from the webhook.",
|
|
870
|
+
"optional": false
|
|
871
|
+
},
|
|
872
|
+
"userId": {
|
|
873
|
+
"type": "string",
|
|
874
|
+
"description": "The unique identifier of the user that creates the webhook. If not provided, default to workspace owner.",
|
|
875
|
+
"optional": false
|
|
876
|
+
}
|
|
877
|
+
},
|
|
878
|
+
"required": [
|
|
879
|
+
"events",
|
|
880
|
+
"url"
|
|
881
|
+
]
|
|
882
|
+
},
|
|
883
|
+
"search": {
|
|
884
|
+
"capabilities": [
|
|
885
|
+
"quo-create-message-webhook-v1",
|
|
886
|
+
"createmessagewebhook",
|
|
887
|
+
"create",
|
|
888
|
+
"new",
|
|
889
|
+
"webhook",
|
|
890
|
+
"for",
|
|
891
|
+
"messages",
|
|
892
|
+
"webhooks"
|
|
893
|
+
],
|
|
894
|
+
"intents": []
|
|
895
|
+
}
|
|
896
|
+
},
|
|
897
|
+
{
|
|
898
|
+
"name": "quo-create-call-webhook-v1",
|
|
899
|
+
"description": "Create a new webhook for calls",
|
|
900
|
+
"schema": {
|
|
901
|
+
"type": "object",
|
|
902
|
+
"properties": {
|
|
903
|
+
"url": {
|
|
904
|
+
"type": "string",
|
|
905
|
+
"description": "The endpoint that receives events from the webhook.",
|
|
906
|
+
"optional": false
|
|
907
|
+
},
|
|
908
|
+
"events": {
|
|
909
|
+
"type": "string",
|
|
910
|
+
"optional": false
|
|
911
|
+
},
|
|
912
|
+
"resourceIds": {
|
|
913
|
+
"type": "string",
|
|
914
|
+
"optional": false
|
|
915
|
+
},
|
|
916
|
+
"userId": {
|
|
917
|
+
"type": "string",
|
|
918
|
+
"description": "The unique identifier of the user that creates the webhook. If not provided, default to workspace owner.",
|
|
919
|
+
"optional": false
|
|
920
|
+
},
|
|
921
|
+
"label": {
|
|
922
|
+
"type": "string",
|
|
923
|
+
"description": "Webhook's label",
|
|
924
|
+
"optional": false
|
|
925
|
+
},
|
|
926
|
+
"status": {
|
|
927
|
+
"type": "string",
|
|
928
|
+
"enum": [
|
|
929
|
+
"enabled",
|
|
930
|
+
"disabled"
|
|
931
|
+
],
|
|
932
|
+
"description": "The status of the webhook.",
|
|
933
|
+
"optional": false
|
|
934
|
+
}
|
|
935
|
+
},
|
|
936
|
+
"required": [
|
|
937
|
+
"url",
|
|
938
|
+
"events"
|
|
939
|
+
]
|
|
940
|
+
},
|
|
941
|
+
"search": {
|
|
942
|
+
"capabilities": [
|
|
943
|
+
"quo-create-call-webhook-v1",
|
|
944
|
+
"createcallwebhook",
|
|
945
|
+
"create",
|
|
946
|
+
"new",
|
|
947
|
+
"webhook",
|
|
948
|
+
"for",
|
|
949
|
+
"calls",
|
|
950
|
+
"webhooks"
|
|
951
|
+
],
|
|
952
|
+
"intents": []
|
|
953
|
+
}
|
|
954
|
+
},
|
|
955
|
+
{
|
|
956
|
+
"name": "quo-create-call-summary-webhook-v1",
|
|
957
|
+
"description": "Create a new webhook for call summaries",
|
|
958
|
+
"schema": {
|
|
959
|
+
"type": "object",
|
|
960
|
+
"properties": {
|
|
961
|
+
"events": {
|
|
962
|
+
"type": "string",
|
|
963
|
+
"optional": false
|
|
964
|
+
},
|
|
965
|
+
"label": {
|
|
966
|
+
"type": "string",
|
|
967
|
+
"description": "Webhook's label",
|
|
968
|
+
"optional": false
|
|
969
|
+
},
|
|
970
|
+
"resourceIds": {
|
|
971
|
+
"type": "string",
|
|
972
|
+
"optional": false
|
|
973
|
+
},
|
|
974
|
+
"status": {
|
|
975
|
+
"type": "string",
|
|
976
|
+
"enum": [
|
|
977
|
+
"enabled",
|
|
978
|
+
"disabled"
|
|
979
|
+
],
|
|
980
|
+
"description": "The status of the webhook.",
|
|
981
|
+
"optional": false
|
|
982
|
+
},
|
|
983
|
+
"url": {
|
|
984
|
+
"type": "string",
|
|
985
|
+
"description": "The endpoint that receives events from the webhook.",
|
|
986
|
+
"optional": false
|
|
987
|
+
},
|
|
988
|
+
"userId": {
|
|
989
|
+
"type": "string",
|
|
990
|
+
"description": "The unique identifier of the user that creates the webhook. If not provided, default to workspace owner.",
|
|
991
|
+
"optional": false
|
|
992
|
+
}
|
|
993
|
+
},
|
|
994
|
+
"required": [
|
|
995
|
+
"events",
|
|
996
|
+
"url"
|
|
997
|
+
]
|
|
998
|
+
},
|
|
999
|
+
"search": {
|
|
1000
|
+
"capabilities": [
|
|
1001
|
+
"quo-create-call-summary-webhook-v1",
|
|
1002
|
+
"createcallsummarywebhook",
|
|
1003
|
+
"create",
|
|
1004
|
+
"new",
|
|
1005
|
+
"webhook",
|
|
1006
|
+
"for",
|
|
1007
|
+
"call",
|
|
1008
|
+
"summaries",
|
|
1009
|
+
"webhooks",
|
|
1010
|
+
"call-summaries"
|
|
1011
|
+
],
|
|
1012
|
+
"intents": []
|
|
1013
|
+
}
|
|
1014
|
+
},
|
|
1015
|
+
{
|
|
1016
|
+
"name": "quo-create-call-transcript-webhook-v1",
|
|
1017
|
+
"description": "Create a new webhook for call transcripts",
|
|
1018
|
+
"schema": {
|
|
1019
|
+
"type": "object",
|
|
1020
|
+
"properties": {
|
|
1021
|
+
"events": {
|
|
1022
|
+
"type": "string",
|
|
1023
|
+
"optional": false
|
|
1024
|
+
},
|
|
1025
|
+
"label": {
|
|
1026
|
+
"type": "string",
|
|
1027
|
+
"description": "The webhook's label.",
|
|
1028
|
+
"optional": false
|
|
1029
|
+
},
|
|
1030
|
+
"resourceIds": {
|
|
1031
|
+
"type": "string",
|
|
1032
|
+
"optional": false
|
|
1033
|
+
},
|
|
1034
|
+
"status": {
|
|
1035
|
+
"type": "string",
|
|
1036
|
+
"enum": [
|
|
1037
|
+
"enabled",
|
|
1038
|
+
"disabled"
|
|
1039
|
+
],
|
|
1040
|
+
"description": "The status of the webhook.",
|
|
1041
|
+
"optional": false
|
|
1042
|
+
},
|
|
1043
|
+
"url": {
|
|
1044
|
+
"type": "string",
|
|
1045
|
+
"description": "The endpoint that receives events from the webhook.",
|
|
1046
|
+
"optional": false
|
|
1047
|
+
},
|
|
1048
|
+
"userId": {
|
|
1049
|
+
"type": "string",
|
|
1050
|
+
"description": "The ID of the user that creates the webhook. If not provided, default to workspace owner.",
|
|
1051
|
+
"optional": false
|
|
1052
|
+
}
|
|
1053
|
+
},
|
|
1054
|
+
"required": [
|
|
1055
|
+
"events",
|
|
1056
|
+
"url"
|
|
1057
|
+
]
|
|
1058
|
+
},
|
|
1059
|
+
"search": {
|
|
1060
|
+
"capabilities": [
|
|
1061
|
+
"quo-create-call-transcript-webhook-v1",
|
|
1062
|
+
"createcalltranscriptwebhook",
|
|
1063
|
+
"create",
|
|
1064
|
+
"new",
|
|
1065
|
+
"webhook",
|
|
1066
|
+
"for",
|
|
1067
|
+
"call",
|
|
1068
|
+
"transcripts",
|
|
1069
|
+
"webhooks",
|
|
1070
|
+
"call-transcripts"
|
|
1071
|
+
],
|
|
1072
|
+
"intents": []
|
|
1073
|
+
}
|
|
1074
|
+
},
|
|
1075
|
+
{
|
|
1076
|
+
"name": "quo-test-connection",
|
|
1077
|
+
"description": "Test API connection and verify credentials are configured",
|
|
1078
|
+
"schema": {
|
|
1079
|
+
"type": "object",
|
|
1080
|
+
"properties": {}
|
|
1081
|
+
},
|
|
1082
|
+
"search": {
|
|
1083
|
+
"capabilities": [
|
|
1084
|
+
"quo",
|
|
1085
|
+
"test",
|
|
1086
|
+
"connection",
|
|
1087
|
+
"health"
|
|
1088
|
+
],
|
|
1089
|
+
"intents": [
|
|
1090
|
+
"connection"
|
|
1091
|
+
]
|
|
1092
|
+
}
|
|
1093
|
+
}
|
|
1094
|
+
],
|
|
1095
|
+
"generatedAt": "2026-05-07T11:23:59.189Z"
|
|
1096
|
+
}
|