@itentialopensource/adapter-tiger_connect 3.0.0 → 3.1.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.
Files changed (45) hide show
  1. package/.eslintignore +0 -1
  2. package/.jshintrc +3 -0
  3. package/CALLS.md +300 -0
  4. package/CHANGELOG.md +8 -0
  5. package/CONTRIBUTING.md +1 -160
  6. package/ENHANCE.md +2 -2
  7. package/README.md +31 -22
  8. package/adapter.js +159 -330
  9. package/adapterBase.js +538 -873
  10. package/changelogs/changelog.md +24 -0
  11. package/metadata.json +49 -0
  12. package/package.json +23 -26
  13. package/pronghorn.json +474 -142
  14. package/propertiesSchema.json +453 -40
  15. package/refs?service=git-upload-pack +0 -0
  16. package/report/adapter-openapi.json +2843 -0
  17. package/report/adapter-openapi.yaml +1812 -0
  18. package/report/adapterInfo.json +10 -0
  19. package/report/updateReport1691506957449.json +120 -0
  20. package/report/updateReport1692201567664.json +120 -0
  21. package/report/updateReport1692202988955.json +120 -0
  22. package/report/updateReport1694455085096.json +120 -0
  23. package/report/updateReport1694466559556.json +120 -0
  24. package/report/updateReport1698421996302.json +120 -0
  25. package/sampleProperties.json +63 -2
  26. package/test/integration/adapterTestBasicGet.js +1 -1
  27. package/test/integration/adapterTestConnectivity.js +91 -42
  28. package/test/integration/adapterTestIntegration.js +130 -2
  29. package/test/unit/adapterBaseTestUnit.js +388 -313
  30. package/test/unit/adapterTestUnit.js +306 -109
  31. package/utils/adapterInfo.js +1 -1
  32. package/utils/addAuth.js +1 -1
  33. package/utils/artifactize.js +1 -1
  34. package/utils/checkMigrate.js +1 -1
  35. package/utils/entitiesToDB.js +1 -0
  36. package/utils/findPath.js +1 -1
  37. package/utils/methodDocumentor.js +71 -23
  38. package/utils/modify.js +13 -15
  39. package/utils/packModificationScript.js +1 -1
  40. package/utils/taskMover.js +309 -0
  41. package/utils/tbScript.js +3 -10
  42. package/utils/tbUtils.js +2 -3
  43. package/utils/testRunner.js +1 -1
  44. package/utils/troubleshootingAdapter.js +1 -3
  45. package/workflows/README.md +0 -3
@@ -0,0 +1,1812 @@
1
+ openapi: 3.0.0
2
+ info:
3
+ title: TigerConnect
4
+ description: This is a sample description. You can find out more about the OpenAPI Specification at http://spec.openapis.org/oas/v3.0.3.
5
+ contact:
6
+ email: apiteam@swagger.io
7
+ version: '1.0'
8
+ servers:
9
+ - url: https://developer.tigertext.me
10
+ variables: {}
11
+ - url: https://api.tigertext.me/group/{groupid}/members
12
+ variables:
13
+ groupid:
14
+ default: DefaultParameterValue
15
+ - url: https://developer.tigertex.me/message/{messageid}/attachment
16
+ variables:
17
+ messageid:
18
+ default: DefaultParameterValue
19
+ - url: http://developer.tigertext.me
20
+ variables: {}
21
+ - url: 'http:'
22
+ variables: {}
23
+ - url: https://devapi.tigertext.me/integrations/scheduler
24
+ variables: {}
25
+ paths:
26
+ /group:
27
+ post:
28
+ tags:
29
+ - Group
30
+ summary: postCreateNewGroup
31
+ description: postCreateNewGroup
32
+ operationId: postCreateNewGroup
33
+ parameters: []
34
+ requestBody:
35
+ description: ''
36
+ content:
37
+ application/json:
38
+ schema:
39
+ allOf:
40
+ - $ref: '#/components/schemas/postCreateNewGroupRequest'
41
+ - example:
42
+ members:
43
+ - a1bf9402-6939-4487-9349-49768a4cc1fe
44
+ - '@user2'
45
+ example:
46
+ members:
47
+ - a1bf9402-6939-4487-9349-49768a4cc1fe
48
+ - '@user2'
49
+ required: true
50
+ responses:
51
+ '200':
52
+ description: ''
53
+ headers: {}
54
+ content: {}
55
+ deprecated: false
56
+ security:
57
+ - basic: []
58
+ /group/{groupid}:
59
+ get:
60
+ tags:
61
+ - Group
62
+ summary: getGroupInfo
63
+ description: getGroupInfo
64
+ operationId: getGroupInfo
65
+ parameters:
66
+ - name: groupid
67
+ in: path
68
+ description: ''
69
+ required: true
70
+ style: simple
71
+ schema:
72
+ type: string
73
+ responses:
74
+ '200':
75
+ description: ''
76
+ headers: {}
77
+ content: {}
78
+ deprecated: false
79
+ security:
80
+ - basic: []
81
+ delete:
82
+ tags:
83
+ - Group
84
+ summary: deleteGroup
85
+ description: deleteGroup
86
+ operationId: deleteGroup
87
+ parameters:
88
+ - name: groupid
89
+ in: path
90
+ description: ''
91
+ required: true
92
+ style: simple
93
+ schema:
94
+ type: string
95
+ responses:
96
+ '200':
97
+ description: ''
98
+ headers: {}
99
+ content: {}
100
+ deprecated: false
101
+ security:
102
+ - basic: []
103
+ post:
104
+ tags:
105
+ - default
106
+ summary: postUpdateGroup
107
+ description: ''
108
+ operationId: postUpdateGroup
109
+ parameters:
110
+ - name: groupid
111
+ in: path
112
+ description: groupid
113
+ required: true
114
+ style: simple
115
+ schema:
116
+ type: string
117
+ requestBody:
118
+ description: body
119
+ content:
120
+ '*/*':
121
+ schema:
122
+ description: body
123
+ required: true
124
+ responses:
125
+ '200':
126
+ description: successful operation
127
+ headers: {}
128
+ content: {}
129
+ '400':
130
+ description: failed operation
131
+ headers: {}
132
+ content: {}
133
+ deprecated: false
134
+ /group/{groupid}/members:
135
+ post:
136
+ tags:
137
+ - Group
138
+ summary: postAddMemberToGroup
139
+ description: postAddMemberToGroup
140
+ operationId: postAddMemberToGroup
141
+ parameters:
142
+ - name: Content-Type
143
+ in: header
144
+ description: ''
145
+ required: true
146
+ style: simple
147
+ schema:
148
+ $ref: '#/components/schemas/Content-Type'
149
+ - name: groupid
150
+ in: path
151
+ description: ''
152
+ required: true
153
+ style: simple
154
+ schema:
155
+ type: string
156
+ requestBody:
157
+ content:
158
+ application/x-www-form-urlencoded:
159
+ encoding: {}
160
+ schema:
161
+ required:
162
+ - members
163
+ type: object
164
+ properties:
165
+ members:
166
+ type: string
167
+ example: d5ff3799-86ef-4ed2-893e-66fe86470001,user2@email.address
168
+ required: false
169
+ responses:
170
+ '200':
171
+ description: ''
172
+ headers: {}
173
+ content: {}
174
+ deprecated: false
175
+ security:
176
+ - basic: []
177
+ /remove:
178
+ post:
179
+ tags:
180
+ - Group
181
+ summary: postRemoveGroupMember
182
+ description: postRemoveGroupMember
183
+ operationId: postRemoveGroupMember
184
+ parameters:
185
+ - name: Content-Type
186
+ in: header
187
+ description: ''
188
+ required: true
189
+ style: simple
190
+ schema:
191
+ $ref: '#/components/schemas/Content-Type'
192
+ requestBody:
193
+ content:
194
+ application/x-www-form-urlencoded:
195
+ encoding: {}
196
+ schema:
197
+ required:
198
+ - members
199
+ type: object
200
+ properties:
201
+ members:
202
+ type: string
203
+ example: d5ff3799-86ef-4ed2-893e-66fe86470001,user2@email.address
204
+ required: false
205
+ responses:
206
+ '200':
207
+ description: ''
208
+ headers: {}
209
+ content: {}
210
+ deprecated: false
211
+ security:
212
+ - basic: []
213
+ /message:
214
+ post:
215
+ tags:
216
+ - Messages
217
+ summary: postNewMsgAfterConnection
218
+ description: postNewMsgAfterConnection
219
+ operationId: postNewMsgAfterConnection
220
+ parameters:
221
+ - name: Content-Type
222
+ in: header
223
+ description: ''
224
+ required: true
225
+ style: simple
226
+ schema:
227
+ $ref: '#/components/schemas/Content-Type'
228
+ requestBody:
229
+ content:
230
+ application/x-www-form-urlencoded:
231
+ encoding: {}
232
+ schema:
233
+ required:
234
+ - "'recipient"
235
+ - ttl
236
+ - body
237
+ type: object
238
+ properties:
239
+ "'recipient":
240
+ type: string
241
+ example: tester@xyzco.com
242
+ ttl:
243
+ type: integer
244
+ format: int32
245
+ example: 1440
246
+ body:
247
+ type: string
248
+ example: just' testing
249
+ required: false
250
+ responses:
251
+ '200':
252
+ description: ''
253
+ headers: {}
254
+ content: {}
255
+ deprecated: false
256
+ security:
257
+ - basic: []
258
+ /message/{messageid}:
259
+ get:
260
+ tags:
261
+ - Messages
262
+ summary: getMsgInfo
263
+ description: getMsgInfo
264
+ operationId: getMsgInfo
265
+ parameters:
266
+ - name: messageid
267
+ in: path
268
+ description: ''
269
+ required: true
270
+ style: simple
271
+ schema:
272
+ type: string
273
+ responses:
274
+ '200':
275
+ description: ''
276
+ headers: {}
277
+ content: {}
278
+ deprecated: false
279
+ security:
280
+ - basic: []
281
+ /message/{messageid}/status:
282
+ get:
283
+ tags:
284
+ - Messages
285
+ summary: getMsgRecipientInfo
286
+ description: getMsgRecipientInfo
287
+ operationId: getMsgRecipientInfo
288
+ parameters:
289
+ - name: messageid
290
+ in: path
291
+ description: ''
292
+ required: true
293
+ style: simple
294
+ schema:
295
+ type: string
296
+ responses:
297
+ '200':
298
+ description: ''
299
+ headers: {}
300
+ content: {}
301
+ deprecated: false
302
+ security:
303
+ - basic: []
304
+ /message/status:
305
+ post:
306
+ tags:
307
+ - Messages
308
+ summary: postSetMsgStatus
309
+ description: postSetMsgStatus
310
+ operationId: postSetMsgStatus
311
+ parameters:
312
+ - name: Content-Type
313
+ in: header
314
+ description: ''
315
+ required: true
316
+ style: simple
317
+ schema:
318
+ $ref: '#/components/schemas/Content-Type'
319
+ requestBody:
320
+ content:
321
+ application/x-www-form-urlencoded:
322
+ encoding: {}
323
+ schema:
324
+ required:
325
+ - read
326
+ - delivered
327
+ type: object
328
+ properties:
329
+ read:
330
+ type: string
331
+ example: 082a563f-c237-45b5-a234-5a484779d308
332
+ delivered:
333
+ type: string
334
+ example: 2c0386e0-b092-476b-a892-23364ed2d689,b7c7fb2b-5059-4937-a4a1-018ba2390310
335
+ required: false
336
+ responses:
337
+ '200':
338
+ description: ''
339
+ headers: {}
340
+ content: {}
341
+ deprecated: false
342
+ security:
343
+ - basic: []
344
+ //api.tigertext.me/message/{messageid}:
345
+ delete:
346
+ tags:
347
+ - Messages
348
+ summary: deleteMsg
349
+ description: deleteMsg
350
+ operationId: deleteMsg
351
+ parameters:
352
+ - name: messageid
353
+ in: path
354
+ description: ''
355
+ required: true
356
+ style: simple
357
+ schema:
358
+ type: string
359
+ responses:
360
+ '200':
361
+ description: ''
362
+ headers: {}
363
+ content: {}
364
+ deprecated: false
365
+ security:
366
+ - basic: []
367
+ /1:
368
+ get:
369
+ tags:
370
+ - Messages
371
+ summary: getMsgAttachment
372
+ description: getMsgAttachment
373
+ operationId: getMsgAttachment
374
+ parameters:
375
+ - name: Accept
376
+ in: header
377
+ description: ''
378
+ required: true
379
+ style: simple
380
+ schema:
381
+ type: string
382
+ example: image/tt-zip
383
+ responses:
384
+ '200':
385
+ description: ''
386
+ headers: {}
387
+ content: {}
388
+ deprecated: false
389
+ security:
390
+ - basic: []
391
+ /message/typing:
392
+ post:
393
+ tags:
394
+ - Messages
395
+ summary: postNotifyUserAbtNewMsg
396
+ description: postNotifyUserAbtNewMsg
397
+ operationId: postNotifyUserAbtNewMsg
398
+ parameters:
399
+ - name: Content-Type
400
+ in: header
401
+ description: ''
402
+ required: true
403
+ style: simple
404
+ schema:
405
+ $ref: '#/components/schemas/Content-Type'
406
+ requestBody:
407
+ content:
408
+ application/x-www-form-urlencoded:
409
+ encoding: {}
410
+ schema:
411
+ required:
412
+ - recipient
413
+ type: object
414
+ properties:
415
+ recipient:
416
+ type: string
417
+ example: '@tester'
418
+ required: false
419
+ responses:
420
+ '200':
421
+ description: ''
422
+ headers: {}
423
+ content: {}
424
+ deprecated: false
425
+ security:
426
+ - basic: []
427
+ /message/typing/{recipient}:
428
+ delete:
429
+ tags:
430
+ - Messages
431
+ summary: deleteUserNotifyAbtNewMsg
432
+ description: deleteUserNotifyAbtNewMsg
433
+ operationId: deleteUserNotifyAbtNewMsg
434
+ parameters:
435
+ - name: recipient
436
+ in: path
437
+ description: ''
438
+ required: true
439
+ style: simple
440
+ schema:
441
+ type: string
442
+ responses:
443
+ '200':
444
+ description: ''
445
+ headers: {}
446
+ content: {}
447
+ deprecated: false
448
+ security:
449
+ - basic: []
450
+ /metadata/{entity}:
451
+ get:
452
+ tags:
453
+ - Metadata
454
+ summary: getMetadata
455
+ description: getMetadata
456
+ operationId: getMetadata
457
+ parameters:
458
+ - name: accept
459
+ in: header
460
+ description: ''
461
+ required: true
462
+ style: simple
463
+ schema:
464
+ type: string
465
+ example: application/json
466
+ - name: entity
467
+ in: path
468
+ description: ''
469
+ required: true
470
+ style: simple
471
+ schema:
472
+ type: string
473
+ responses:
474
+ '200':
475
+ description: ''
476
+ headers: {}
477
+ content: {}
478
+ deprecated: false
479
+ post:
480
+ tags:
481
+ - Metadata
482
+ summary: postMetadata
483
+ description: postMetadata
484
+ operationId: postMetadata
485
+ parameters:
486
+ - name: accept
487
+ in: header
488
+ description: ''
489
+ required: true
490
+ style: simple
491
+ schema:
492
+ type: string
493
+ example: application/json
494
+ - name: content-type
495
+ in: header
496
+ description: ''
497
+ required: true
498
+ style: simple
499
+ schema:
500
+ $ref: '#/components/schemas/content-type5'
501
+ - name: entity
502
+ in: path
503
+ description: ''
504
+ required: true
505
+ style: simple
506
+ schema:
507
+ type: string
508
+ responses:
509
+ '200':
510
+ description: ''
511
+ headers: {}
512
+ content: {}
513
+ deprecated: false
514
+ /roster:
515
+ get:
516
+ tags:
517
+ - Roster
518
+ summary: getRecentConversationList
519
+ description: getRecentConversationList
520
+ operationId: getRecentConversationList
521
+ parameters:
522
+ - name: accept
523
+ in: header
524
+ description: ''
525
+ required: true
526
+ style: simple
527
+ schema:
528
+ type: string
529
+ example: application/json
530
+ responses:
531
+ '200':
532
+ description: ''
533
+ headers: {}
534
+ content: {}
535
+ deprecated: false
536
+ post:
537
+ tags:
538
+ - Roster
539
+ summary: postUsersOrListsToRoster
540
+ description: postUsersOrListsToRoster
541
+ operationId: postUsersOrListsToRoster
542
+ parameters:
543
+ - name: Content-Type
544
+ in: header
545
+ description: ''
546
+ required: true
547
+ style: simple
548
+ schema:
549
+ $ref: '#/components/schemas/Content-Type'
550
+ requestBody:
551
+ content:
552
+ application/x-www-form-urlencoded:
553
+ encoding: {}
554
+ schema:
555
+ required:
556
+ - entity
557
+ - type
558
+ type: object
559
+ properties:
560
+ entity:
561
+ type: string
562
+ example: da52cee5-227f-43ed-bdde-6b9554cc0914
563
+ type:
564
+ type: string
565
+ example: tigertext:entity:account
566
+ required: false
567
+ responses:
568
+ '200':
569
+ description: ''
570
+ headers: {}
571
+ content: {}
572
+ deprecated: false
573
+ security:
574
+ - basic: []
575
+ /roster/{entity}:
576
+ delete:
577
+ tags:
578
+ - Roster
579
+ summary: deleteConversation
580
+ description: deleteConversation
581
+ operationId: deleteConversation
582
+ parameters:
583
+ - name: accept
584
+ in: header
585
+ description: ''
586
+ required: true
587
+ style: simple
588
+ schema:
589
+ type: string
590
+ example: application/json
591
+ - name: entity
592
+ in: path
593
+ description: ''
594
+ required: true
595
+ style: simple
596
+ schema:
597
+ type: string
598
+ responses:
599
+ '200':
600
+ description: ''
601
+ headers: {}
602
+ content: {}
603
+ deprecated: false
604
+ /user/{userid}:
605
+ get:
606
+ tags:
607
+ - Users
608
+ summary: getUserInfo
609
+ description: getUserInfo
610
+ operationId: getUserInfo
611
+ parameters:
612
+ - name: userid
613
+ in: path
614
+ description: ''
615
+ required: true
616
+ style: simple
617
+ schema:
618
+ type: string
619
+ responses:
620
+ '200':
621
+ description: ''
622
+ headers: {}
623
+ content: {}
624
+ deprecated: false
625
+ security:
626
+ - basic: []
627
+ /user/{userid}/message/unread_count:
628
+ get:
629
+ tags:
630
+ - Users
631
+ summary: getUnreadMsgCountAcrossAllOrg
632
+ description: getUnreadMsgCountAcrossAllOrg
633
+ operationId: getUnreadMsgCountAcrossAllOrg
634
+ parameters:
635
+ - name: Authorization
636
+ in: header
637
+ description: ''
638
+ required: true
639
+ style: simple
640
+ schema:
641
+ type: string
642
+ example: XMPP-Simple
643
+ - name: userid
644
+ in: path
645
+ description: ''
646
+ required: true
647
+ style: simple
648
+ schema:
649
+ type: string
650
+ responses:
651
+ '200':
652
+ description: ''
653
+ headers: {}
654
+ content: {}
655
+ deprecated: false
656
+ security: []
657
+ /user/{userid}/organization/{organization}/message/unread_count:
658
+ get:
659
+ tags:
660
+ - Users
661
+ summary: getUnreadMsgCountForUserForSingleOrg
662
+ description: getUnreadMsgCountForUserForSingleOrg
663
+ operationId: getUnreadMsgCountForUserForSingleOrg
664
+ parameters:
665
+ - name: Authorization
666
+ in: header
667
+ description: ''
668
+ required: true
669
+ style: simple
670
+ schema:
671
+ type: string
672
+ example: XMPP-Simple
673
+ - name: userid
674
+ in: path
675
+ description: ''
676
+ required: true
677
+ style: simple
678
+ schema:
679
+ type: string
680
+ - name: organization
681
+ in: path
682
+ description: ''
683
+ required: true
684
+ style: simple
685
+ schema:
686
+ type: string
687
+ responses:
688
+ '200':
689
+ description: ''
690
+ headers: {}
691
+ content: {}
692
+ deprecated: false
693
+ security: []
694
+ /user_lookup/{userid}:
695
+ get:
696
+ tags:
697
+ - Users
698
+ summary: getUserBasicDetails
699
+ description: getUserBasicDetails
700
+ operationId: getUserBasicDetails
701
+ parameters:
702
+ - name: userid
703
+ in: path
704
+ description: ''
705
+ required: true
706
+ style: simple
707
+ schema:
708
+ type: string
709
+ responses:
710
+ '200':
711
+ description: ''
712
+ headers: {}
713
+ content: {}
714
+ deprecated: false
715
+ security:
716
+ - basic: []
717
+ /user/{userid}/organization:
718
+ post:
719
+ tags:
720
+ - Users
721
+ summary: postAddUserToOrg
722
+ description: postAddUserToOrg
723
+ operationId: postAddUserToOrg
724
+ parameters:
725
+ - name: Content-Type
726
+ in: header
727
+ description: ''
728
+ required: true
729
+ style: simple
730
+ schema:
731
+ $ref: '#/components/schemas/Content-Type'
732
+ - name: userid
733
+ in: path
734
+ description: ''
735
+ required: true
736
+ style: simple
737
+ schema:
738
+ type: string
739
+ requestBody:
740
+ content:
741
+ application/x-www-form-urlencoded:
742
+ encoding: {}
743
+ schema:
744
+ required:
745
+ - organization_key
746
+ type: object
747
+ properties:
748
+ organization_key:
749
+ type: string
750
+ example: WNIDOsKoKLEUNWnUJBoExmCB
751
+ required: false
752
+ responses:
753
+ '200':
754
+ description: ''
755
+ headers: {}
756
+ content: {}
757
+ deprecated: false
758
+ security:
759
+ - basic: []
760
+ /user/{userid}/organization/{organization}:
761
+ delete:
762
+ tags:
763
+ - Users
764
+ summary: deleteUserFromOrg
765
+ description: deleteUserFromOrg
766
+ operationId: deleteUserFromOrg
767
+ parameters:
768
+ - name: userid
769
+ in: path
770
+ description: ''
771
+ required: true
772
+ style: simple
773
+ schema:
774
+ type: string
775
+ - name: organization
776
+ in: path
777
+ description: ''
778
+ required: true
779
+ style: simple
780
+ schema:
781
+ type: string
782
+ responses:
783
+ '200':
784
+ description: ''
785
+ headers: {}
786
+ content: {}
787
+ deprecated: false
788
+ /user/{userid}/organization/{organization}/roles:
789
+ get:
790
+ tags:
791
+ - Users
792
+ summary: getUserRole
793
+ description: getUserRole
794
+ operationId: getUserRole
795
+ parameters:
796
+ - name: userid
797
+ in: path
798
+ description: ''
799
+ required: true
800
+ style: simple
801
+ schema:
802
+ type: string
803
+ - name: organization
804
+ in: path
805
+ description: ''
806
+ required: true
807
+ style: simple
808
+ schema:
809
+ type: string
810
+ responses:
811
+ '200':
812
+ description: ''
813
+ headers: {}
814
+ content: {}
815
+ deprecated: false
816
+ security:
817
+ - basic: []
818
+ /user/{userid}/organization/{organization}/roles/{role}:
819
+ post:
820
+ tags:
821
+ - Users
822
+ summary: postSpecificRoleToUser
823
+ description: postSpecificRoleToUser
824
+ operationId: postSpecificRoleToUser
825
+ parameters:
826
+ - name: userid
827
+ in: path
828
+ description: ''
829
+ required: true
830
+ style: simple
831
+ schema:
832
+ type: string
833
+ - name: organization
834
+ in: path
835
+ description: ''
836
+ required: true
837
+ style: simple
838
+ schema:
839
+ type: string
840
+ - name: role
841
+ in: path
842
+ description: ''
843
+ required: true
844
+ style: simple
845
+ schema:
846
+ type: string
847
+ responses:
848
+ '200':
849
+ description: ''
850
+ headers: {}
851
+ content: {}
852
+ deprecated: false
853
+ security:
854
+ - basic: []
855
+ delete:
856
+ tags:
857
+ - Users
858
+ summary: deleteUserRole
859
+ description: deleteUserRole
860
+ operationId: deleteUserRole
861
+ parameters:
862
+ - name: userid
863
+ in: path
864
+ description: ''
865
+ required: true
866
+ style: simple
867
+ schema:
868
+ type: string
869
+ - name: organization
870
+ in: path
871
+ description: ''
872
+ required: true
873
+ style: simple
874
+ schema:
875
+ type: string
876
+ - name: role
877
+ in: path
878
+ description: ''
879
+ required: true
880
+ style: simple
881
+ schema:
882
+ type: string
883
+ responses:
884
+ '200':
885
+ description: ''
886
+ headers: {}
887
+ content: {}
888
+ deprecated: false
889
+ security:
890
+ - basic: []
891
+ /user:
892
+ post:
893
+ tags:
894
+ - Users
895
+ summary: postUpdateUsers
896
+ description: postUpdateUsers
897
+ operationId: postUpdateUsers
898
+ parameters:
899
+ - name: TT-X-Organization-Key
900
+ in: header
901
+ description: ''
902
+ required: true
903
+ style: simple
904
+ schema:
905
+ type: string
906
+ example: org_unique_id
907
+ - name: Content-Type
908
+ in: header
909
+ description: ''
910
+ required: true
911
+ style: simple
912
+ schema:
913
+ $ref: '#/components/schemas/Content-Type'
914
+ requestBody:
915
+ content:
916
+ application/x-www-form-urlencoded:
917
+ encoding: {}
918
+ schema:
919
+ required:
920
+ - unique_id
921
+ - emails
922
+ - phones
923
+ - first_name
924
+ - last_name
925
+ type: object
926
+ properties:
927
+ unique_id:
928
+ type: string
929
+ example: a_new_user@the.org
930
+ emails:
931
+ type: string
932
+ example: a_new_user@the.org
933
+ phones:
934
+ type: string
935
+ example: '+15555555555'
936
+ first_name:
937
+ type: string
938
+ example: New
939
+ last_name:
940
+ type: string
941
+ example: User
942
+ required: false
943
+ responses:
944
+ '200':
945
+ description: ''
946
+ headers: {}
947
+ content: {}
948
+ deprecated: false
949
+ security:
950
+ - basic: []
951
+ /events:
952
+ get:
953
+ tags:
954
+ - Events
955
+ summary: getSseEventStream
956
+ description: getSseEventStream
957
+ operationId: getSseEventStream
958
+ parameters:
959
+ - name: accept
960
+ in: header
961
+ description: ''
962
+ required: true
963
+ style: simple
964
+ schema:
965
+ type: string
966
+ example: application/json
967
+ responses:
968
+ '200':
969
+ description: ''
970
+ headers: {}
971
+ content: {}
972
+ deprecated: false
973
+ delete:
974
+ tags:
975
+ - Events
976
+ summary: deleteEventsConnections
977
+ description: deleteEventsConnections
978
+ operationId: deleteEventsConnections
979
+ parameters: []
980
+ responses:
981
+ '200':
982
+ description: ''
983
+ headers: {}
984
+ content: {}
985
+ deprecated: false
986
+ security:
987
+ - basic: []
988
+ /events/ack:
989
+ post:
990
+ tags:
991
+ - Events
992
+ summary: postAckEvents
993
+ description: postAckEvents
994
+ operationId: postAckEvents
995
+ parameters:
996
+ - name: Content-Type
997
+ in: header
998
+ description: ''
999
+ required: true
1000
+ style: simple
1001
+ schema:
1002
+ $ref: '#/components/schemas/Content-Type'
1003
+ requestBody:
1004
+ content:
1005
+ application/x-www-form-urlencoded:
1006
+ encoding: {}
1007
+ schema:
1008
+ required:
1009
+ - events
1010
+ type: object
1011
+ properties:
1012
+ events:
1013
+ type: string
1014
+ example: 082a563f-c237-45b5-a234-5a484779d308
1015
+ required: false
1016
+ responses:
1017
+ '200':
1018
+ description: ''
1019
+ headers: {}
1020
+ content: {}
1021
+ deprecated: false
1022
+ security:
1023
+ - basic: []
1024
+ /organization:
1025
+ post:
1026
+ tags:
1027
+ - Organization
1028
+ summary: postCreateTigerTxtOrg
1029
+ description: postCreateTigerTxtOrg
1030
+ operationId: postCreateTigerTxtOrg
1031
+ parameters:
1032
+ - name: Content-Type
1033
+ in: header
1034
+ description: ''
1035
+ required: true
1036
+ style: simple
1037
+ schema:
1038
+ $ref: '#/components/schemas/Content-Type'
1039
+ requestBody:
1040
+ content:
1041
+ application/x-www-form-urlencoded:
1042
+ encoding: {}
1043
+ schema:
1044
+ required:
1045
+ - name
1046
+ - billing
1047
+ type: object
1048
+ properties:
1049
+ name:
1050
+ type: string
1051
+ example: New Org
1052
+ billing:
1053
+ type: string
1054
+ example: active
1055
+ required: false
1056
+ responses:
1057
+ '200':
1058
+ description: ''
1059
+ headers: {}
1060
+ content: {}
1061
+ deprecated: false
1062
+ security:
1063
+ - basic: []
1064
+ /organization/{organization}:
1065
+ post:
1066
+ tags:
1067
+ - Organization
1068
+ summary: postUpdateTigerTxtOrg
1069
+ description: postUpdateTigerTxtOrg
1070
+ operationId: postUpdateTigerTxtOrg
1071
+ parameters:
1072
+ - name: Content-Type
1073
+ in: header
1074
+ description: ''
1075
+ required: true
1076
+ style: simple
1077
+ schema:
1078
+ $ref: '#/components/schemas/Content-Type'
1079
+ - name: organization
1080
+ in: path
1081
+ description: ''
1082
+ required: true
1083
+ style: simple
1084
+ schema:
1085
+ type: string
1086
+ requestBody:
1087
+ content:
1088
+ application/x-www-form-urlencoded:
1089
+ encoding: {}
1090
+ schema:
1091
+ required:
1092
+ - name
1093
+ type: object
1094
+ properties:
1095
+ name:
1096
+ type: string
1097
+ example: Change the Org Name
1098
+ required: false
1099
+ responses:
1100
+ '200':
1101
+ description: ''
1102
+ headers: {}
1103
+ content: {}
1104
+ deprecated: false
1105
+ security:
1106
+ - basic: []
1107
+ get:
1108
+ tags:
1109
+ - Organization
1110
+ summary: getTigerTxtOrgInfo
1111
+ description: getTigerTxtOrgInfo
1112
+ operationId: getTigerTxtOrgInfo
1113
+ parameters:
1114
+ - name: organization
1115
+ in: path
1116
+ description: ''
1117
+ required: true
1118
+ style: simple
1119
+ schema:
1120
+ type: string
1121
+ responses:
1122
+ '200':
1123
+ description: ''
1124
+ headers: {}
1125
+ content: {}
1126
+ deprecated: false
1127
+ security:
1128
+ - basic: []
1129
+ /organization/{organization}/security_groups:
1130
+ post:
1131
+ tags:
1132
+ - Organization
1133
+ summary: postCreateCustomDirectoryForOrg
1134
+ description: postCreateCustomDirectoryForOrg
1135
+ operationId: postCreateCustomDirectoryForOrg
1136
+ parameters:
1137
+ - name: accept
1138
+ in: header
1139
+ description: ''
1140
+ required: true
1141
+ style: simple
1142
+ schema:
1143
+ type: string
1144
+ example: application/json
1145
+ - name: content-type
1146
+ in: header
1147
+ description: ''
1148
+ required: true
1149
+ style: simple
1150
+ schema:
1151
+ $ref: '#/components/schemas/content-type5'
1152
+ - name: organization
1153
+ in: path
1154
+ description: ''
1155
+ required: true
1156
+ style: simple
1157
+ schema:
1158
+ type: string
1159
+ responses:
1160
+ '200':
1161
+ description: ''
1162
+ headers: {}
1163
+ content: {}
1164
+ deprecated: false
1165
+ /organization/{organizationid}:
1166
+ delete:
1167
+ tags:
1168
+ - Organization
1169
+ summary: deleteTigerTxtOrg
1170
+ description: deleteTigerTxtOrg
1171
+ operationId: deleteTigerTxtOrg
1172
+ parameters:
1173
+ - name: organizationid
1174
+ in: path
1175
+ description: ''
1176
+ required: true
1177
+ style: simple
1178
+ schema:
1179
+ type: string
1180
+ responses:
1181
+ '200':
1182
+ description: ''
1183
+ headers: {}
1184
+ content: {}
1185
+ deprecated: false
1186
+ security:
1187
+ - basic: []
1188
+ /configs/info:
1189
+ post:
1190
+ tags:
1191
+ - Scheduler
1192
+ summary: postReturnIntegrationInfo
1193
+ description: postReturnIntegrationInfo
1194
+ operationId: postReturnIntegrationInfo
1195
+ parameters: []
1196
+ requestBody:
1197
+ description: ''
1198
+ content:
1199
+ application/json:
1200
+ schema:
1201
+ allOf:
1202
+ - $ref: '#/components/schemas/postReturnIntegrationInfoRequest'
1203
+ - example:
1204
+ id: a1bf9402-6939-4487-9349-49768a4cc1fe
1205
+ example:
1206
+ id: a1bf9402-6939-4487-9349-49768a4cc1fe
1207
+ required: true
1208
+ responses:
1209
+ '200':
1210
+ description: ''
1211
+ headers: {}
1212
+ content: {}
1213
+ deprecated: false
1214
+ security:
1215
+ - basic: []
1216
+ /delete:
1217
+ post:
1218
+ tags:
1219
+ - Scheduler
1220
+ summary: postDeleteAllMappingsOnDeletingIntegration
1221
+ description: postDeleteAllMappingsOnDeletingIntegration
1222
+ operationId: postDeleteAllMappingsOnDeletingIntegration
1223
+ parameters: []
1224
+ requestBody:
1225
+ description: ''
1226
+ content:
1227
+ application/json:
1228
+ schema:
1229
+ allOf:
1230
+ - $ref: '#/components/schemas/postReturnIntegrationInfoRequest'
1231
+ - example:
1232
+ id: a1bf9402-6939-4487-9349-49768a4cc1fe
1233
+ example:
1234
+ id: a1bf9402-6939-4487-9349-49768a4cc1fe
1235
+ required: true
1236
+ responses:
1237
+ '200':
1238
+ description: ''
1239
+ headers: {}
1240
+ content: {}
1241
+ deprecated: false
1242
+ security:
1243
+ - basic: []
1244
+ /configs/info/org:
1245
+ post:
1246
+ tags:
1247
+ - Scheduler
1248
+ summary: postDifferentIntegrationIDOfOrg
1249
+ description: postDifferentIntegrationIDOfOrg
1250
+ operationId: postDifferentIntegrationIDOfOrg
1251
+ parameters: []
1252
+ requestBody:
1253
+ description: ''
1254
+ content:
1255
+ application/json:
1256
+ schema:
1257
+ allOf:
1258
+ - $ref: '#/components/schemas/postDifferentIntegrationIDOfOrgRequest'
1259
+ - example:
1260
+ org: j4TZWC00B969t8CdZZZHe6Cit
1261
+ example:
1262
+ org: j4TZWC00B969t8CdZZZHe6Cit
1263
+ required: true
1264
+ responses:
1265
+ '200':
1266
+ description: ''
1267
+ headers: {}
1268
+ content: {}
1269
+ deprecated: false
1270
+ security:
1271
+ - basic: []
1272
+ /configs/set:
1273
+ post:
1274
+ tags:
1275
+ - Scheduler
1276
+ summary: postAccessOrganizationKey
1277
+ description: postAccessOrganizationKey
1278
+ operationId: postAccessOrganizationKey
1279
+ parameters: []
1280
+ requestBody:
1281
+ description: ''
1282
+ content:
1283
+ application/json:
1284
+ schema:
1285
+ type: string
1286
+ example: '{"org":"j4TZWCOOA969t8CdYRHd6Cit", "partner":"org partner name", "secret":"secret key"]}'
1287
+ example: '{"org":"j4TZWCOOA969t8CdYRHd6Cit", "partner":"org partner name", "secret":"secret key"]}'
1288
+ required: true
1289
+ responses:
1290
+ '200':
1291
+ description: ''
1292
+ headers: {}
1293
+ content: {}
1294
+ deprecated: false
1295
+ security:
1296
+ - basic: []
1297
+ /mappings/ids/info:
1298
+ post:
1299
+ tags:
1300
+ - Scheduler
1301
+ summary: postReturnAllMappings
1302
+ description: postReturnAllMappings
1303
+ operationId: postReturnAllMappings
1304
+ parameters: []
1305
+ requestBody:
1306
+ description: ''
1307
+ content:
1308
+ application/json:
1309
+ schema:
1310
+ allOf:
1311
+ - $ref: '#/components/schemas/postReturnIntegrationInfoRequest'
1312
+ - example:
1313
+ id: a1bf9402-6939-4487-9349-49768a4cc1fe
1314
+ example:
1315
+ id: a1bf9402-6939-4487-9349-49768a4cc1fe
1316
+ required: true
1317
+ responses:
1318
+ '200':
1319
+ description: ''
1320
+ headers: {}
1321
+ content: {}
1322
+ deprecated: false
1323
+ security:
1324
+ - basic: []
1325
+ /mappings/ids/add:
1326
+ post:
1327
+ tags:
1328
+ - Scheduler
1329
+ summary: postUserOrRolesMappings
1330
+ description: postUserOrRolesMappings
1331
+ operationId: postUserOrRolesMappings
1332
+ parameters: []
1333
+ requestBody:
1334
+ description: ''
1335
+ content:
1336
+ application/json:
1337
+ schema:
1338
+ allOf:
1339
+ - $ref: '#/components/schemas/postUserOrRolesMappingsRequest'
1340
+ - example:
1341
+ id: 96bccdc4-7125-4f5c-a718-2c05039edcd3
1342
+ mappings:
1343
+ - type: user
1344
+ external_id: '1'
1345
+ internal_id: a2e07931-ea27-4bf5-bfb9-8e6f04c2ce60
1346
+ example:
1347
+ id: 96bccdc4-7125-4f5c-a718-2c05039edcd3
1348
+ mappings:
1349
+ - type: user
1350
+ external_id: '1'
1351
+ internal_id: a2e07931-ea27-4bf5-bfb9-8e6f04c2ce60
1352
+ required: true
1353
+ responses:
1354
+ '200':
1355
+ description: ''
1356
+ headers: {}
1357
+ content: {}
1358
+ deprecated: false
1359
+ security:
1360
+ - basic: []
1361
+ /mappings/ids/delete:
1362
+ post:
1363
+ tags:
1364
+ - Scheduler
1365
+ summary: postDeleteAllMapings
1366
+ description: postDeleteAllMapings
1367
+ operationId: postDeleteAllMapings
1368
+ parameters: []
1369
+ requestBody:
1370
+ description: ''
1371
+ content:
1372
+ application/json:
1373
+ schema:
1374
+ allOf:
1375
+ - $ref: '#/components/schemas/postReturnIntegrationInfoRequest'
1376
+ - example:
1377
+ id: a1bf9402-6939-4487-9349-49768a4cc1fe
1378
+ example:
1379
+ id: a1bf9402-6939-4487-9349-49768a4cc1fe
1380
+ required: true
1381
+ responses:
1382
+ '200':
1383
+ description: ''
1384
+ headers: {}
1385
+ content: {}
1386
+ deprecated: false
1387
+ security:
1388
+ - basic: []
1389
+ /mappings/ids/set:
1390
+ post:
1391
+ tags:
1392
+ - Scheduler
1393
+ summary: postGetIntegrationInfo
1394
+ description: postGetIntegrationInfo
1395
+ operationId: postGetIntegrationInfo
1396
+ parameters: []
1397
+ requestBody:
1398
+ description: ''
1399
+ content:
1400
+ application/json:
1401
+ schema:
1402
+ allOf:
1403
+ - $ref: '#/components/schemas/postUserOrRolesMappingsRequest'
1404
+ - example:
1405
+ id: 96bccdc4-7125-4f5c-a718-2c05039edcd3
1406
+ mappings:
1407
+ - type: user
1408
+ external_id: '1'
1409
+ internal_id: a2e07931-ea27-4bf5-bfb9-8e6f04c2ce60
1410
+ example:
1411
+ id: 96bccdc4-7125-4f5c-a718-2c05039edcd3
1412
+ mappings:
1413
+ - type: user
1414
+ external_id: '1'
1415
+ internal_id: a2e07931-ea27-4bf5-bfb9-8e6f04c2ce60
1416
+ required: true
1417
+ responses:
1418
+ '200':
1419
+ description: ''
1420
+ headers: {}
1421
+ content: {}
1422
+ deprecated: false
1423
+ security:
1424
+ - basic: []
1425
+ /webhook/ids:
1426
+ post:
1427
+ tags:
1428
+ - Scheduler
1429
+ summary: postSubmitPayloadOfCSVInfo
1430
+ description: postSubmitPayloadOfCSVInfo
1431
+ operationId: postSubmitPayloadOfCSVInfo
1432
+ parameters: []
1433
+ requestBody:
1434
+ description: ''
1435
+ content:
1436
+ application/json:
1437
+ schema:
1438
+ allOf:
1439
+ - $ref: '#/components/schemas/postSubmitPayloadOfCSVInfoRequest'
1440
+ - example:
1441
+ id: 0d505f86-e273-4dc5-ad38-0cc6ba275fea
1442
+ tz: America/New_York
1443
+ data:
1444
+ - user: 0a1c2541-f936-4ce6-a1f0-b30aaefe7264
1445
+ role: 218093a7-4b93-4793-a25f-e745f55b8a8e
1446
+ stime: 2017-10-12T08:00:00Z
1447
+ etime: 2017-10-12T14:00:00Z
1448
+ example:
1449
+ id: 0d505f86-e273-4dc5-ad38-0cc6ba275fea
1450
+ tz: America/New_York
1451
+ data:
1452
+ - user: 0a1c2541-f936-4ce6-a1f0-b30aaefe7264
1453
+ role: 218093a7-4b93-4793-a25f-e745f55b8a8e
1454
+ stime: 2017-10-12T08:00:00Z
1455
+ etime: 2017-10-12T14:00:00Z
1456
+ required: true
1457
+ responses:
1458
+ '200':
1459
+ description: ''
1460
+ headers: {}
1461
+ content: {}
1462
+ deprecated: false
1463
+ security:
1464
+ - basic: []
1465
+ /webhook/csv:
1466
+ post:
1467
+ tags:
1468
+ - Scheduler
1469
+ summary: PostpostSubmitPayloadOfCSVInfo
1470
+ description: postSubmitPayloadOfCSVInfo
1471
+ operationId: PostpostSubmitPayloadOfCSVInfo
1472
+ parameters:
1473
+ - name: tt-x-timezone
1474
+ in: header
1475
+ description: ''
1476
+ required: true
1477
+ style: simple
1478
+ schema:
1479
+ type: string
1480
+ example: America/New_York
1481
+ - name: tt-x-integration-id
1482
+ in: header
1483
+ description: ''
1484
+ required: true
1485
+ style: simple
1486
+ schema:
1487
+ type: string
1488
+ example: 42bcd94a-324e-4b2e-bd1b-a82e8fe2f1c0
1489
+ requestBody:
1490
+ description: ''
1491
+ content:
1492
+ application/json:
1493
+ schema:
1494
+ type: string
1495
+ example: '@schedules.csv'
1496
+ example: '@schedules.csv'
1497
+ required: true
1498
+ responses:
1499
+ '200':
1500
+ description: ''
1501
+ headers: {}
1502
+ content: {}
1503
+ deprecated: false
1504
+ security:
1505
+ - basic: []
1506
+ /webhook/download:
1507
+ post:
1508
+ tags:
1509
+ - Scheduler
1510
+ summary: PostRetrieveLastCsvFile
1511
+ description: PostRetrieveLastCsvFile
1512
+ operationId: PostRetrieveLastCsvFile
1513
+ parameters: []
1514
+ requestBody:
1515
+ description: ''
1516
+ content:
1517
+ application/json:
1518
+ schema:
1519
+ allOf:
1520
+ - $ref: '#/components/schemas/PostRetrieveLastCsvFileRequest'
1521
+ - example:
1522
+ org: j4TZXC00B969t8CdZZZHe6Cit
1523
+ id: a1bf9402-6939-4487-9349-49768a4cc1dd
1524
+ example:
1525
+ org: j4TZXC00B969t8CdZZZHe6Cit
1526
+ id: a1bf9402-6939-4487-9349-49768a4cc1dd
1527
+ required: true
1528
+ responses:
1529
+ '200':
1530
+ description: ''
1531
+ headers: {}
1532
+ content: {}
1533
+ deprecated: false
1534
+ security:
1535
+ - basic: []
1536
+ /webhook:
1537
+ post:
1538
+ tags:
1539
+ - Scheduler
1540
+ summary: postSubmitPayloadOfShiftInfo
1541
+ description: postSubmitPayloadOfShiftInfo
1542
+ operationId: postSubmitPayloadOfShiftInfo
1543
+ parameters: []
1544
+ requestBody:
1545
+ description: ''
1546
+ content:
1547
+ application/json:
1548
+ schema:
1549
+ type: string
1550
+ example: '{"id":"0d505f86-e273-4dc5-ad38-0cc6ba275fea", "tz":"America/New_York", "data":[{"external_user_id":"12345", "username":"soomer", "user_token":"0c505f86-e273-3456-ad38-0cc6ba275fea", "user_email":"soomer@tigertext.com", "user_phone":"15556667777", "external_role_id":"5678", "role_token":"0e505f86-d273-4dc5-ad38-0cc6ba275fea", "stime":"2017-10-12T08:00:00Z", "etime":"2017-10-12T14:00:00Z"}]}&{"members":["a1bf9402-6939-4487-9349-49768a4cc1fe","@user2"]}'
1551
+ example: '{"id":"0d505f86-e273-4dc5-ad38-0cc6ba275fea", "tz":"America/New_York", "data":[{"external_user_id":"12345", "username":"soomer", "user_token":"0c505f86-e273-3456-ad38-0cc6ba275fea", "user_email":"soomer@tigertext.com", "user_phone":"15556667777", "external_role_id":"5678", "role_token":"0e505f86-d273-4dc5-ad38-0cc6ba275fea", "stime":"2017-10-12T08:00:00Z", "etime":"2017-10-12T14:00:00Z"}]}&{"members":["a1bf9402-6939-4487-9349-49768a4cc1fe","@user2"]}'
1552
+ required: true
1553
+ responses:
1554
+ '200':
1555
+ description: ''
1556
+ headers: {}
1557
+ content: {}
1558
+ deprecated: false
1559
+ security:
1560
+ - basic: []
1561
+ /search:
1562
+ post:
1563
+ tags:
1564
+ - default
1565
+ summary: postSearchEntities
1566
+ description: ''
1567
+ operationId: postSearchEntities
1568
+ parameters: []
1569
+ requestBody:
1570
+ description: body
1571
+ content:
1572
+ '*/*':
1573
+ schema:
1574
+ description: body
1575
+ example:
1576
+ type:
1577
+ - group
1578
+ directory: organization_id
1579
+ display_name: search_term
1580
+ example:
1581
+ type:
1582
+ - group
1583
+ directory: organization_id
1584
+ display_name: search_term
1585
+ required: true
1586
+ responses:
1587
+ '200':
1588
+ description: successful operation
1589
+ headers: {}
1590
+ content: {}
1591
+ '400':
1592
+ description: failed operation
1593
+ headers: {}
1594
+ content: {}
1595
+ deprecated: false
1596
+ components:
1597
+ schemas:
1598
+ postCreateNewGroupRequest:
1599
+ title: postCreateNewGroupRequest
1600
+ required:
1601
+ - members
1602
+ type: object
1603
+ properties:
1604
+ members:
1605
+ type: array
1606
+ items:
1607
+ type: string
1608
+ description: ''
1609
+ example:
1610
+ members:
1611
+ - a1bf9402-6939-4487-9349-49768a4cc1fe
1612
+ - '@user2'
1613
+ postReturnIntegrationInfoRequest:
1614
+ title: postReturnIntegrationInfoRequest
1615
+ required:
1616
+ - id
1617
+ type: object
1618
+ properties:
1619
+ id:
1620
+ type: string
1621
+ example:
1622
+ id: a1bf9402-6939-4487-9349-49768a4cc1fe
1623
+ postDeleteAllMappingsOnDeletingIntegrationRequest:
1624
+ title: postDeleteAllMappingsOnDeletingIntegrationRequest
1625
+ required:
1626
+ - id
1627
+ type: object
1628
+ properties:
1629
+ id:
1630
+ type: string
1631
+ example:
1632
+ id: a1bf9402-6939-4487-9349-49768a4cc1fe
1633
+ postDifferentIntegrationIDOfOrgRequest:
1634
+ title: postDifferentIntegrationIDOfOrgRequest
1635
+ required:
1636
+ - org
1637
+ type: object
1638
+ properties:
1639
+ org:
1640
+ type: string
1641
+ example:
1642
+ org: j4TZWC00B969t8CdZZZHe6Cit
1643
+ postReturnAllMappingsRequest:
1644
+ title: postReturnAllMappingsRequest
1645
+ required:
1646
+ - id
1647
+ type: object
1648
+ properties:
1649
+ id:
1650
+ type: string
1651
+ example:
1652
+ id: a1bf9402-6939-4487-9349-49768a4cc1fe
1653
+ postUserOrRolesMappingsRequest:
1654
+ title: postUserOrRolesMappingsRequest
1655
+ required:
1656
+ - id
1657
+ - mappings
1658
+ type: object
1659
+ properties:
1660
+ id:
1661
+ type: string
1662
+ mappings:
1663
+ type: array
1664
+ items:
1665
+ $ref: '#/components/schemas/Mapping'
1666
+ description: ''
1667
+ example:
1668
+ id: 96bccdc4-7125-4f5c-a718-2c05039edcd3
1669
+ mappings:
1670
+ - type: user
1671
+ external_id: '1'
1672
+ internal_id: a2e07931-ea27-4bf5-bfb9-8e6f04c2ce60
1673
+ Mapping:
1674
+ title: Mapping
1675
+ required:
1676
+ - type
1677
+ - external_id
1678
+ - internal_id
1679
+ type: object
1680
+ properties:
1681
+ type:
1682
+ type: string
1683
+ external_id:
1684
+ type: string
1685
+ internal_id:
1686
+ type: string
1687
+ example:
1688
+ type: user
1689
+ external_id: '1'
1690
+ internal_id: a2e07931-ea27-4bf5-bfb9-8e6f04c2ce60
1691
+ postDeleteAllMapingsRequest:
1692
+ title: postDeleteAllMapingsRequest
1693
+ required:
1694
+ - id
1695
+ type: object
1696
+ properties:
1697
+ id:
1698
+ type: string
1699
+ example:
1700
+ id: a1bf9402-6939-4487-9349-49768a4cc1fe
1701
+ postGetIntegrationInfoRequest:
1702
+ title: postGetIntegrationInfoRequest
1703
+ required:
1704
+ - id
1705
+ - mappings
1706
+ type: object
1707
+ properties:
1708
+ id:
1709
+ type: string
1710
+ mappings:
1711
+ type: array
1712
+ items:
1713
+ $ref: '#/components/schemas/Mapping'
1714
+ description: ''
1715
+ example:
1716
+ id: 96bccdc4-7125-4f5c-a718-2c05039edcd3
1717
+ mappings:
1718
+ - type: user
1719
+ external_id: '1'
1720
+ internal_id: a2e07931-ea27-4bf5-bfb9-8e6f04c2ce60
1721
+ postSubmitPayloadOfCSVInfoRequest:
1722
+ title: postSubmitPayloadOfCSVInfoRequest
1723
+ required:
1724
+ - id
1725
+ - tz
1726
+ - data
1727
+ type: object
1728
+ properties:
1729
+ id:
1730
+ type: string
1731
+ tz:
1732
+ type: string
1733
+ data:
1734
+ type: array
1735
+ items:
1736
+ $ref: '#/components/schemas/Datum'
1737
+ description: ''
1738
+ example:
1739
+ id: 0d505f86-e273-4dc5-ad38-0cc6ba275fea
1740
+ tz: America/New_York
1741
+ data:
1742
+ - user: 0a1c2541-f936-4ce6-a1f0-b30aaefe7264
1743
+ role: 218093a7-4b93-4793-a25f-e745f55b8a8e
1744
+ stime: 2017-10-12T08:00:00Z
1745
+ etime: 2017-10-12T14:00:00Z
1746
+ Datum:
1747
+ title: Datum
1748
+ required:
1749
+ - user
1750
+ - role
1751
+ - stime
1752
+ - etime
1753
+ type: object
1754
+ properties:
1755
+ user:
1756
+ type: string
1757
+ role:
1758
+ type: string
1759
+ stime:
1760
+ type: string
1761
+ etime:
1762
+ type: string
1763
+ example:
1764
+ user: 0a1c2541-f936-4ce6-a1f0-b30aaefe7264
1765
+ role: 218093a7-4b93-4793-a25f-e745f55b8a8e
1766
+ stime: 2017-10-12T08:00:00Z
1767
+ etime: 2017-10-12T14:00:00Z
1768
+ PostRetrieveLastCsvFileRequest:
1769
+ title: PostRetrieveLastCsvFileRequest
1770
+ required:
1771
+ - org
1772
+ - id
1773
+ type: object
1774
+ properties:
1775
+ org:
1776
+ type: string
1777
+ id:
1778
+ type: string
1779
+ example:
1780
+ org: j4TZXC00B969t8CdZZZHe6Cit
1781
+ id: a1bf9402-6939-4487-9349-49768a4cc1dd
1782
+ Content-Type:
1783
+ title: Content-Type
1784
+ enum:
1785
+ - application/x-www-form-urlencoded
1786
+ type: string
1787
+ example: application/x-www-form-urlencoded
1788
+ content-type5:
1789
+ title: content-type5
1790
+ enum:
1791
+ - application/json
1792
+ type: string
1793
+ example: application/json
1794
+ securitySchemes:
1795
+ basic:
1796
+ type: http
1797
+ scheme: basic
1798
+ security: []
1799
+ tags:
1800
+ - name: Group
1801
+ - name: Messages
1802
+ - name: Metadata
1803
+ - name: Roster
1804
+ - name: Users
1805
+ - name: Events
1806
+ - name: Organization
1807
+ - name: Scheduler
1808
+ - name: default
1809
+ description: ''
1810
+ externalDocs:
1811
+ description: Find out more about the OpenAPI Initiative
1812
+ url: https://www.openapis.org/