-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenapi.yaml
More file actions
728 lines (728 loc) · 17 KB
/
openapi.yaml
File metadata and controls
728 lines (728 loc) · 17 KB
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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
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
252
253
254
255
256
257
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
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
openapi: 3.0.0
info:
title: SupportPal REST API
version: 1.0.0
description: API for accessing SupportPal tickets, messages, operators, and feedback
for AI-powered ticket analysis.
servers:
- url: https://{domain}/api
variables:
domain:
default: yourdomain.com
description: Your SupportPal instance domain
security:
- BasicAuth: []
components:
securitySchemes:
BasicAuth:
type: http
scheme: basic
description: API token as username, 'X' as password
schemas:
Department:
type: object
properties:
id:
type: integer
name:
type: string
description:
type: string
nullable: true
order:
type: integer
parent:
type: integer
nullable: true
public:
type: integer
created_at:
type: integer
updated_at:
type: integer
Channel:
type: object
properties:
id:
type: integer
name:
type: string
enabled:
type: integer
created_at:
type: integer
updated_at:
type: integer
UserSummary:
type: object
description: A user (customer) account embedded in ticket and message responses
properties:
id:
type: integer
firstname:
type: string
lastname:
type: string
email:
type: string
format: email
email_verified:
type: integer
organisation_id:
type: integer
nullable: true
organisation_access_level:
type: integer
nullable: true
country:
type: string
nullable: true
language_code:
type: string
nullable: true
timezone:
type: string
nullable: true
avatar:
type: string
nullable: true
created_at:
type: integer
updated_at:
type: integer
formatted_name:
type: string
TicketStatus:
type: object
properties:
id:
type: integer
name:
type: string
colour:
type: string
auto_close:
type: integer
order:
type: integer
created_at:
type: integer
updated_at:
type: integer
Priority:
type: object
properties:
id:
type: integer
name:
type: string
colour:
type: string
order:
type: integer
created_at:
type: integer
updated_at:
type: integer
Ticket:
type: object
properties:
id:
type: integer
number:
type: string
department_id:
type: integer
department_email_id:
type: integer
nullable: true
brand_id:
type: integer
channel_id:
type: integer
user_id:
type: integer
status_id:
type: integer
priority_id:
type: integer
sla_plan_id:
type: integer
nullable: true
subject:
type: string
due_time:
type: integer
nullable: true
resolved_time:
type: integer
nullable: true
cc:
anyOf:
- type: array
items:
type: string
- type: object
additionalProperties:
type: string
locked:
type: integer
merged:
type: integer
internal:
type: integer
created_at:
type: integer
updated_at:
type: integer
deleted_at:
type: integer
nullable: true
frontend_url:
type: string
operator_url:
type: string
token:
type: string
department:
nullable: true
allOf:
- $ref: '#/components/schemas/Department'
channel:
nullable: true
allOf:
- $ref: '#/components/schemas/Channel'
user:
nullable: true
allOf:
- $ref: '#/components/schemas/UserSummary'
status:
nullable: true
allOf:
- $ref: '#/components/schemas/TicketStatus'
priority:
nullable: true
allOf:
- $ref: '#/components/schemas/Priority'
slaplan:
type: object
nullable: true
Message:
type: object
properties:
id:
type: integer
ticket_id:
type: integer
channel_id:
type: integer
user_id:
type: integer
user_ip_address:
type: string
nullable: true
by:
type: integer
description: 'Author type: 0 = operator, 1 = user (customer)'
type:
type: integer
description: 'Message type: 0 = message, 1 = internal note'
text:
type: string
is_draft:
type: integer
social_id:
type: string
nullable: true
created_at:
type: integer
updated_at:
type: integer
user:
nullable: true
allOf:
- $ref: '#/components/schemas/UserSummary'
Operator:
type: object
properties:
id:
type: integer
firstname:
type: string
lastname:
type: string
email:
type: string
format: email
email_verified:
type: integer
active:
type: integer
organisation_id:
type: integer
nullable: true
organisation_access_level:
type: integer
nullable: true
country:
type: string
nullable: true
language_code:
type: string
nullable: true
timezone:
type: string
nullable: true
avatar:
type: string
nullable: true
created_at:
type: integer
updated_at:
type: integer
formatted_name:
type: string
phonenumbers:
type: array
items:
type: object
groups:
type: array
items:
type: object
FeedbackForm:
type: object
properties:
id:
type: integer
name:
type: string
description:
type: string
nullable: true
email_template_id:
type: integer
nullable: true
condition_group_type:
type: integer
expiry_time:
type: integer
nullable: true
time_after_resolved:
type: integer
nullable: true
fields:
type: array
items:
type: object
translations:
type: array
items:
type: object
created_at:
type: integer
updated_at:
type: integer
Feedback:
type: object
properties:
id:
type: integer
ticket_id:
type: integer
form_id:
type: integer
rating:
type: integer
nullable: true
description: 'Customer satisfaction rating: null = not yet responded, 0
= bad, 1 = good, 2 = neutral'
fields_answered:
type: integer
token:
type: string
expiry_time:
type: integer
values:
type: array
items:
type: object
form:
nullable: true
allOf:
- $ref: '#/components/schemas/FeedbackForm'
created_at:
type: integer
updated_at:
type: integer
TicketResponse:
type: object
properties:
status:
type: string
message:
type: string
nullable: true
data:
$ref: '#/components/schemas/Ticket'
TicketListResponse:
type: object
properties:
status:
type: string
message:
type: string
nullable: true
count:
type: integer
description: Total number of records matching the query
data:
type: array
items:
$ref: '#/components/schemas/Ticket'
MessageResponse:
type: object
properties:
status:
type: string
message:
type: string
nullable: true
data:
$ref: '#/components/schemas/Message'
MessageListResponse:
type: object
properties:
status:
type: string
message:
type: string
nullable: true
count:
type: integer
description: Total number of records matching the query
data:
type: array
items:
$ref: '#/components/schemas/Message'
OperatorResponse:
type: object
properties:
status:
type: string
message:
type: string
nullable: true
data:
$ref: '#/components/schemas/Operator'
OperatorListResponse:
type: object
properties:
status:
type: string
message:
type: string
nullable: true
count:
type: integer
description: Total number of records matching the query
data:
type: array
items:
$ref: '#/components/schemas/Operator'
FeedbackListResponse:
type: object
description: Both the list and single-resource feedback endpoints return an
array in data.
properties:
status:
type: string
message:
type: string
nullable: true
count:
type: integer
description: Total number of records matching the query
data:
type: array
items:
$ref: '#/components/schemas/Feedback'
paths:
/ticket/ticket:
get:
summary: List tickets
operationId: listTickets
tags:
- Ticket
parameters:
- name: department
in: query
description: Filter by department ID(s), comma delimited e.g. 1,2,3
schema:
type: string
- name: status
in: query
description: Filter by status ID(s), comma delimited e.g. 1,2,3
schema:
type: string
- name: assigned
in: query
description: Filter by assigned operator ID(s), use -1 for unassigned tickets
schema:
type: string
- name: start
in: query
description: The first result offset (1-indexed)
schema:
type: integer
default: 1
- name: limit
in: query
description: The number of results to fetch per page
schema:
type: integer
default: 50
- name: order_column
in: query
schema:
type: string
default: id
- name: order_direction
in: query
schema:
type: string
enum:
- asc
- desc
default: asc
- name: created_at_min
in: query
description: Filter tickets created since this UNIX timestamp
schema:
type: integer
- name: created_at_max
in: query
description: Filter tickets created before this UNIX timestamp
schema:
type: integer
- name: updated_at_min
in: query
description: Filter tickets updated since this UNIX timestamp
schema:
type: integer
- name: updated_at_max
in: query
description: Filter tickets updated before this UNIX timestamp
schema:
type: integer
responses:
'200':
description: Successful response
content:
application/json:
schema:
$ref: '#/components/schemas/TicketListResponse'
/ticket/ticket/{id}:
get:
summary: Get ticket by ID
operationId: getTicket
tags:
- Ticket
parameters:
- name: id
in: path
required: true
schema:
type: integer
responses:
'200':
description: Successful response
content:
application/json:
schema:
$ref: '#/components/schemas/TicketResponse'
/ticket/message:
get:
summary: List messages for a ticket
operationId: listMessages
tags:
- Message
parameters:
- name: ticket_id
in: query
required: true
description: Ticket ID to fetch messages for
schema:
type: integer
- name: type
in: query
description: 'Filter by message type: 0 = message, 1 = internal note'
schema:
type: integer
- name: by
in: query
description: 'Filter by author type: 0 = operator, 1 = user (customer)'
schema:
type: integer
- name: include_draft
in: query
description: Whether to include draft messages
schema:
type: integer
default: 0
- name: start
in: query
schema:
type: integer
default: 1
- name: limit
in: query
schema:
type: integer
default: 50
- name: order_column
in: query
schema:
type: string
default: id
- name: order_direction
in: query
schema:
type: string
enum:
- asc
- desc
default: asc
responses:
'200':
description: Successful response
content:
application/json:
schema:
$ref: '#/components/schemas/MessageListResponse'
/ticket/message/{id}:
get:
summary: Get message by ID
operationId: getMessage
tags:
- Message
parameters:
- name: id
in: path
required: true
schema:
type: integer
responses:
'200':
description: Successful response
content:
application/json:
schema:
$ref: '#/components/schemas/MessageResponse'
/user/operator:
get:
summary: List operators
operationId: listOperators
tags:
- Operator
parameters:
- name: active
in: query
description: 'Filter by active status: 1 = active, 0 = inactive'
schema:
type: integer
- name: email
in: query
description: Search for operators by email
schema:
type: string
- name: start
in: query
schema:
type: integer
default: 1
- name: limit
in: query
schema:
type: integer
default: 50
responses:
'200':
description: Successful response
content:
application/json:
schema:
$ref: '#/components/schemas/OperatorListResponse'
/user/operator/{id}:
get:
summary: Get operator by ID
operationId: getOperator
tags:
- Operator
parameters:
- name: id
in: path
required: true
schema:
type: integer
responses:
'200':
description: Successful response
content:
application/json:
schema:
$ref: '#/components/schemas/OperatorResponse'
/ticket/feedback:
get:
summary: List ticket feedback
operationId: listFeedback
tags:
- Feedback
parameters:
- name: ticket_id
in: query
description: Only show feedback for the given ticket ID
schema:
type: integer
- name: rating
in: query
description: 'Filter by rating: 0 = bad, 1 = good, 2 = neutral'
schema:
type: integer
- name: start
in: query
schema:
type: integer
default: 1
- name: limit
in: query
schema:
type: integer
default: 50
responses:
'200':
description: Successful response
content:
application/json:
schema:
$ref: '#/components/schemas/FeedbackListResponse'
/ticket/feedback/{id}:
get:
summary: Get feedback by ID
operationId: getFeedback
tags:
- Feedback
parameters:
- name: id
in: path
required: true
schema:
type: integer
responses:
'200':
description: 'Successful response. Note: returns an array in data even for
a single resource.'
content:
application/json:
schema:
$ref: '#/components/schemas/FeedbackListResponse'