@itentialopensource/adapter-tiger_connect 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.
Files changed (82) hide show
  1. package/.eslintignore +6 -0
  2. package/.eslintrc.js +18 -0
  3. package/.gitlab/.gitkeep +0 -0
  4. package/.gitlab/issue_templates/.gitkeep +0 -0
  5. package/.gitlab/issue_templates/Default.md +17 -0
  6. package/.gitlab/issue_templates/bugReportTemplate.md +42 -0
  7. package/.gitlab/issue_templates/featureRequestTemplate.md +14 -0
  8. package/.jshintrc +0 -0
  9. package/AUTH.md +39 -0
  10. package/BROKER.md +199 -0
  11. package/CALLS.md +170 -0
  12. package/CHANGELOG.md +9 -0
  13. package/CODE_OF_CONDUCT.md +43 -0
  14. package/CONTRIBUTING.md +172 -0
  15. package/ENHANCE.md +69 -0
  16. package/LICENSE +201 -0
  17. package/PROPERTIES.md +641 -0
  18. package/README.md +337 -0
  19. package/SUMMARY.md +9 -0
  20. package/SYSTEMINFO.md +11 -0
  21. package/TROUBLESHOOT.md +47 -0
  22. package/adapter.js +5398 -0
  23. package/adapterBase.js +1787 -0
  24. package/entities/.generic/action.json +214 -0
  25. package/entities/.generic/schema.json +28 -0
  26. package/entities/.system/action.json +50 -0
  27. package/entities/.system/mockdatafiles/getToken-default.json +3 -0
  28. package/entities/.system/mockdatafiles/healthcheck-default.json +3 -0
  29. package/entities/.system/schema.json +19 -0
  30. package/entities/.system/schemaTokenReq.json +53 -0
  31. package/entities/.system/schemaTokenResp.json +53 -0
  32. package/entities/Events/action.json +65 -0
  33. package/entities/Events/schema.json +21 -0
  34. package/entities/Group/action.json +125 -0
  35. package/entities/Group/schema.json +24 -0
  36. package/entities/Messages/action.json +167 -0
  37. package/entities/Messages/schema.json +48 -0
  38. package/entities/Metadata/action.json +45 -0
  39. package/entities/Metadata/schema.json +20 -0
  40. package/entities/Organization/action.json +105 -0
  41. package/entities/Organization/schema.json +23 -0
  42. package/entities/Roster/action.json +65 -0
  43. package/entities/Roster/schema.json +21 -0
  44. package/entities/Scheduler/action.json +244 -0
  45. package/entities/Scheduler/schema.json +30 -0
  46. package/entities/Search/action.json +24 -0
  47. package/entities/Search/schema.json +19 -0
  48. package/entities/Users/action.json +209 -0
  49. package/entities/Users/schema.json +72 -0
  50. package/error.json +190 -0
  51. package/package.json +87 -0
  52. package/pronghorn.json +2645 -0
  53. package/propertiesDecorators.json +14 -0
  54. package/propertiesSchema.json +1248 -0
  55. package/refs?service=git-upload-pack +0 -0
  56. package/report/TigerConnect.swagger-converted.json-OpenApi3Json.json +2843 -0
  57. package/report/creationReport.json +582 -0
  58. package/sampleProperties.json +195 -0
  59. package/test/integration/adapterTestBasicGet.js +83 -0
  60. package/test/integration/adapterTestConnectivity.js +93 -0
  61. package/test/integration/adapterTestIntegration.js +1684 -0
  62. package/test/unit/adapterBaseTestUnit.js +949 -0
  63. package/test/unit/adapterTestUnit.js +3033 -0
  64. package/utils/adapterInfo.js +206 -0
  65. package/utils/addAuth.js +94 -0
  66. package/utils/artifactize.js +146 -0
  67. package/utils/basicGet.js +50 -0
  68. package/utils/checkMigrate.js +63 -0
  69. package/utils/entitiesToDB.js +178 -0
  70. package/utils/findPath.js +74 -0
  71. package/utils/methodDocumentor.js +225 -0
  72. package/utils/modify.js +154 -0
  73. package/utils/packModificationScript.js +35 -0
  74. package/utils/patches2bundledDeps.js +90 -0
  75. package/utils/pre-commit.sh +32 -0
  76. package/utils/removeHooks.js +20 -0
  77. package/utils/setup.js +33 -0
  78. package/utils/tbScript.js +246 -0
  79. package/utils/tbUtils.js +490 -0
  80. package/utils/testRunner.js +298 -0
  81. package/utils/troubleshootingAdapter.js +195 -0
  82. package/workflows/README.md +3 -0
package/pronghorn.json ADDED
@@ -0,0 +1,2645 @@
1
+ {
2
+ "id": "@itentialopensource/adapter-tiger_connect",
3
+ "type": "Adapter",
4
+ "export": "TigerConnect",
5
+ "title": "Tiger_connect",
6
+ "src": "adapter.js",
7
+ "roles": [
8
+ "admin"
9
+ ],
10
+ "methods": [
11
+ {
12
+ "name": "iapUpdateAdapterConfiguration",
13
+ "summary": "Updates the adapter configuration",
14
+ "description": "Updates the adapter configuration file with the provided changes",
15
+ "input": [
16
+ {
17
+ "name": "configFile",
18
+ "type": "string",
19
+ "info": "The name of the file to change",
20
+ "required": true,
21
+ "schema": {
22
+ "title": "configFile",
23
+ "type": "string"
24
+ }
25
+ },
26
+ {
27
+ "name": "changes",
28
+ "type": "object",
29
+ "info": "JSON object containing the configuration changes",
30
+ "required": true,
31
+ "schema": {
32
+ "title": "changes",
33
+ "type": "object"
34
+ }
35
+ },
36
+ {
37
+ "name": "entity",
38
+ "type": "string",
39
+ "info": "The entity in which the changes are being made",
40
+ "required": false,
41
+ "schema": {
42
+ "title": "entity",
43
+ "type": "string"
44
+ }
45
+ },
46
+ {
47
+ "name": "type",
48
+ "type": "string",
49
+ "info": "The type of file to change - action, schema, or mock",
50
+ "required": false,
51
+ "schema": {
52
+ "title": "type",
53
+ "type": "string"
54
+ }
55
+ },
56
+ {
57
+ "name": "action",
58
+ "type": "string",
59
+ "info": "The action to be changed",
60
+ "required": false,
61
+ "schema": {
62
+ "title": "action",
63
+ "type": "string"
64
+ }
65
+ }
66
+ ],
67
+ "output": {
68
+ "name": "result",
69
+ "type": "object",
70
+ "description": "A JSON Object containing status, code and the result",
71
+ "schema": {
72
+ "title": "result",
73
+ "type": "object"
74
+ }
75
+ },
76
+ "roles": [
77
+ "admin"
78
+ ],
79
+ "route": {
80
+ "verb": "POST",
81
+ "path": "/iapUpdateAdapterConfiguration"
82
+ },
83
+ "task": true
84
+ },
85
+ {
86
+ "name": "iapFindAdapterPath",
87
+ "summary": "Provides the ability to see if a particular API path is supported by the adapter",
88
+ "description": "Provides the ability to see if a particular API path is supported by the adapter",
89
+ "input": [
90
+ {
91
+ "name": "apiPath",
92
+ "type": "string",
93
+ "info": "The API Path you want to check - make sure to not include base path and version",
94
+ "description": "The API Path you want to check - make sure to not include base path and version",
95
+ "schema": {
96
+ "title": "apiPath",
97
+ "type": "string"
98
+ },
99
+ "required": true
100
+ }
101
+ ],
102
+ "output": {
103
+ "name": "result",
104
+ "type": "object",
105
+ "description": "A JSON Object containing the result",
106
+ "schema": {
107
+ "title": "result",
108
+ "type": "object"
109
+ }
110
+ },
111
+ "roles": [
112
+ "admin"
113
+ ],
114
+ "route": {
115
+ "verb": "POST",
116
+ "path": "/iapFindAdapterPath"
117
+ },
118
+ "task": true
119
+ },
120
+ {
121
+ "name": "iapSuspendAdapter",
122
+ "summary": "Suspends the adapter",
123
+ "description": "Suspends the adapter",
124
+ "input": [
125
+ {
126
+ "name": "mode",
127
+ "type": "enum",
128
+ "enumerals": [
129
+ "pause",
130
+ "error"
131
+ ],
132
+ "info": "How incoming requests are handled. Defaults to 'pause'",
133
+ "description": "How incoming requests are handled. Defaults to 'pause'",
134
+ "schema": {
135
+ "title": "mode",
136
+ "type": "string"
137
+ },
138
+ "required": false
139
+ }
140
+ ],
141
+ "output": {
142
+ "name": "result",
143
+ "type": "object",
144
+ "description": "A JSON Object containing the adapter suspended status",
145
+ "schema": {
146
+ "title": "result",
147
+ "type": "object"
148
+ }
149
+ },
150
+ "roles": [
151
+ "admin"
152
+ ],
153
+ "route": {
154
+ "verb": "POST",
155
+ "path": "/iapSuspendAdapter"
156
+ },
157
+ "task": true
158
+ },
159
+ {
160
+ "name": "iapUnsuspendAdapter",
161
+ "summary": "Unsuspends the adapter",
162
+ "description": "Unsuspends the adapter",
163
+ "input": [],
164
+ "output": {
165
+ "name": "result",
166
+ "type": "object",
167
+ "description": "A JSON Object containing the adapter suspended status",
168
+ "schema": {
169
+ "title": "result",
170
+ "type": "object"
171
+ }
172
+ },
173
+ "roles": [
174
+ "admin"
175
+ ],
176
+ "route": {
177
+ "verb": "POST",
178
+ "path": "/iapUnsuspendAdapter"
179
+ },
180
+ "task": true
181
+ },
182
+ {
183
+ "name": "iapGetAdapterQueue",
184
+ "summary": "Return the requests that are waiting in the queue if throttling is enabled",
185
+ "description": "Return the requests that are waiting in the queue if throttling is enabled",
186
+ "input": [],
187
+ "output": {
188
+ "name": "result",
189
+ "type": "object",
190
+ "description": "A JSON Object containing the adapter queue",
191
+ "schema": {
192
+ "title": "result",
193
+ "type": "object"
194
+ }
195
+ },
196
+ "roles": [
197
+ "admin"
198
+ ],
199
+ "route": {
200
+ "verb": "POST",
201
+ "path": "/iapGetAdapterQueue"
202
+ },
203
+ "task": true
204
+ },
205
+ {
206
+ "name": "iapTroubleshootAdapter",
207
+ "summary": "Runs troubleshoot script for adapter",
208
+ "description": "Runs troubleshoot script for adapter",
209
+ "input": [
210
+ {
211
+ "name": "props",
212
+ "type": "object",
213
+ "info": "Object containing configuration, healthcheck and auth properties {'connProps':{'host': 'api.service.com', 'base_path': '/', 'protocol': 'http', 'port': 443, 'version': 'v1'},'healthCheckEndpoint': '/healthcheck', 'auth': {'auth_method': 'no authentication', 'username': 'username', 'password': 'password'}}",
214
+ "required": true,
215
+ "schema": {
216
+ "title": "props",
217
+ "type": "object"
218
+ }
219
+ },
220
+ {
221
+ "name": "persistFlag",
222
+ "type": "boolean",
223
+ "info": "Whether the input properties should be saved",
224
+ "required": true
225
+ }
226
+ ],
227
+ "output": {
228
+ "name": "result",
229
+ "type": "object",
230
+ "description": "A JSON Object containing the test results",
231
+ "schema": {
232
+ "title": "result",
233
+ "type": "object"
234
+ }
235
+ },
236
+ "roles": [
237
+ "admin"
238
+ ],
239
+ "route": {
240
+ "verb": "POST",
241
+ "path": "/iapTroubleshootAdapter"
242
+ },
243
+ "task": true
244
+ },
245
+ {
246
+ "name": "iapRunAdapterHealthcheck",
247
+ "summary": "Runs healthcheck script for adapter",
248
+ "description": "Runs healthcheck script for adapter",
249
+ "input": [],
250
+ "output": {
251
+ "name": "result",
252
+ "type": "boolean",
253
+ "description": "Whether healthcheck passed or failed"
254
+ },
255
+ "roles": [
256
+ "admin"
257
+ ],
258
+ "route": {
259
+ "verb": "POST",
260
+ "path": "/iapRunAdapterHealthcheck"
261
+ },
262
+ "task": true
263
+ },
264
+ {
265
+ "name": "iapRunAdapterConnectivity",
266
+ "summary": "Runs connectivity check script for adapter",
267
+ "description": "Runs connectivity check script for adapter",
268
+ "input": [],
269
+ "output": {
270
+ "name": "result",
271
+ "type": "object",
272
+ "description": "A JSON Object containing the test results",
273
+ "schema": {
274
+ "title": "result",
275
+ "type": "object"
276
+ }
277
+ },
278
+ "roles": [
279
+ "admin"
280
+ ],
281
+ "route": {
282
+ "verb": "POST",
283
+ "path": "/iapRunAdapterConnectivity"
284
+ },
285
+ "task": true
286
+ },
287
+ {
288
+ "name": "iapRunAdapterBasicGet",
289
+ "summary": "Runs basicGet script for adapter",
290
+ "description": "Runs basicGet script for adapter",
291
+ "input": [],
292
+ "output": {
293
+ "name": "result",
294
+ "type": "object",
295
+ "description": "A JSON Object containing the test results",
296
+ "schema": {
297
+ "title": "result",
298
+ "type": "object"
299
+ }
300
+ },
301
+ "roles": [
302
+ "admin"
303
+ ],
304
+ "route": {
305
+ "verb": "POST",
306
+ "path": "/iapRunAdapterBasicGet"
307
+ },
308
+ "task": true
309
+ },
310
+ {
311
+ "name": "iapMoveAdapterEntitiesToDB",
312
+ "summary": "Moves entities from an adapter into the IAP database",
313
+ "description": "Moves entities from an adapter into the IAP database",
314
+ "input": [],
315
+ "output": {
316
+ "name": "res",
317
+ "type": "object",
318
+ "description": "A JSON Object containing status, code and the response from the mongo transaction",
319
+ "schema": {
320
+ "title": "res",
321
+ "type": "object"
322
+ }
323
+ },
324
+ "roles": [
325
+ "admin"
326
+ ],
327
+ "route": {
328
+ "verb": "POST",
329
+ "path": "/iapMoveAdapterEntitiesToDB"
330
+ },
331
+ "task": true
332
+ },
333
+ {
334
+ "name": "genericAdapterRequest",
335
+ "summary": "Makes the requested generic call",
336
+ "description": "Makes the requested generic call",
337
+ "input": [
338
+ {
339
+ "name": "uriPath",
340
+ "type": "string",
341
+ "info": "the path of the api call - do not include the host, port, base path or version",
342
+ "description": "the path of the api call",
343
+ "schema": {
344
+ "title": "uriPath",
345
+ "type": "string"
346
+ },
347
+ "required": true
348
+ },
349
+ {
350
+ "name": "restMethod",
351
+ "type": "string",
352
+ "info": "the rest method (GET, POST, PUT, PATCH, DELETE)",
353
+ "description": "the rest method (GET, POST, PUT, PATCH, DELETE)",
354
+ "schema": {
355
+ "title": "restMethod",
356
+ "type": "string"
357
+ },
358
+ "required": true
359
+ },
360
+ {
361
+ "name": "queryData",
362
+ "type": "object",
363
+ "info": "the query parameters to be put on the url (optional)",
364
+ "description": "the query parameters to be put on the url (optional)",
365
+ "schema": {
366
+ "title": "queryData",
367
+ "type": "object"
368
+ },
369
+ "required": false
370
+ },
371
+ {
372
+ "name": "requestBody",
373
+ "type": "object",
374
+ "info": "the payload to be sent with the request (optional)",
375
+ "description": "the payload to be sent with the request (optional)",
376
+ "schema": {
377
+ "title": "requestBody",
378
+ "type": "object"
379
+ },
380
+ "required": false
381
+ },
382
+ {
383
+ "name": "addlHeaders",
384
+ "type": "object",
385
+ "info": "additional headers to be put on the call (optional)",
386
+ "description": "additional headers to be put on the call (optional)",
387
+ "schema": {
388
+ "title": "addlHeaders",
389
+ "type": "object"
390
+ },
391
+ "required": false
392
+ }
393
+ ],
394
+ "output": {
395
+ "name": "result",
396
+ "type": "object",
397
+ "description": "A JSON Object containing status, code and the result",
398
+ "schema": {
399
+ "title": "result",
400
+ "type": "object"
401
+ }
402
+ },
403
+ "roles": [
404
+ "admin"
405
+ ],
406
+ "route": {
407
+ "verb": "POST",
408
+ "path": "/genericAdapterRequest"
409
+ },
410
+ "task": true
411
+ },
412
+ {
413
+ "name": "genericAdapterRequestNoBasePath",
414
+ "summary": "Makes the requested generic call",
415
+ "description": "Makes the requested generic call",
416
+ "input": [
417
+ {
418
+ "name": "uriPath",
419
+ "type": "string",
420
+ "info": "the path of the api call - do not include the host, port, base path or version",
421
+ "description": "the path of the api call",
422
+ "schema": {
423
+ "title": "uriPath",
424
+ "type": "string"
425
+ },
426
+ "required": true
427
+ },
428
+ {
429
+ "name": "restMethod",
430
+ "type": "string",
431
+ "info": "the rest method (GET, POST, PUT, PATCH, DELETE)",
432
+ "description": "the rest method (GET, POST, PUT, PATCH, DELETE)",
433
+ "schema": {
434
+ "title": "restMethod",
435
+ "type": "string"
436
+ },
437
+ "required": true
438
+ },
439
+ {
440
+ "name": "queryData",
441
+ "type": "object",
442
+ "info": "the query parameters to be put on the url (optional)",
443
+ "description": "the query parameters to be put on the url (optional)",
444
+ "schema": {
445
+ "title": "queryData",
446
+ "type": "object"
447
+ },
448
+ "required": false
449
+ },
450
+ {
451
+ "name": "requestBody",
452
+ "type": "object",
453
+ "info": "the payload to be sent with the request (optional)",
454
+ "description": "the payload to be sent with the request (optional)",
455
+ "schema": {
456
+ "title": "requestBody",
457
+ "type": "object"
458
+ },
459
+ "required": false
460
+ },
461
+ {
462
+ "name": "addlHeaders",
463
+ "type": "object",
464
+ "info": "additional headers to be put on the call (optional)",
465
+ "description": "additional headers to be put on the call (optional)",
466
+ "schema": {
467
+ "title": "addlHeaders",
468
+ "type": "object"
469
+ },
470
+ "required": false
471
+ }
472
+ ],
473
+ "output": {
474
+ "name": "result",
475
+ "type": "object",
476
+ "description": "A JSON Object containing status, code and the result",
477
+ "schema": {
478
+ "title": "result",
479
+ "type": "object"
480
+ }
481
+ },
482
+ "roles": [
483
+ "admin"
484
+ ],
485
+ "route": {
486
+ "verb": "POST",
487
+ "path": "/genericAdapterRequestNoBasePath"
488
+ },
489
+ "task": true
490
+ },
491
+ {
492
+ "name": "getDevice",
493
+ "summary": "Get the Appliance",
494
+ "description": "Get the Appliance",
495
+ "input": [
496
+ {
497
+ "name": "deviceName",
498
+ "type": "string",
499
+ "info": "An Appliance Device Name",
500
+ "required": true,
501
+ "schema": {
502
+ "title": "deviceName",
503
+ "type": "string"
504
+ }
505
+ }
506
+ ],
507
+ "output": {
508
+ "name": "result",
509
+ "type": "object",
510
+ "description": "A JSON Object containing status, code and the result",
511
+ "schema": {
512
+ "title": "result",
513
+ "type": "object"
514
+ }
515
+ },
516
+ "roles": [
517
+ "admin"
518
+ ],
519
+ "route": {
520
+ "verb": "POST",
521
+ "path": "/getDevice"
522
+ },
523
+ "task": true
524
+ },
525
+ {
526
+ "name": "getDevicesFiltered",
527
+ "summary": "Get Appliances that match the filter",
528
+ "description": "Get Appliances that match the filter",
529
+ "input": [
530
+ {
531
+ "name": "options",
532
+ "type": "object",
533
+ "info": "options - e.g. { 'start': 1, 'limit': 20, 'filter': { 'name': 'abc123' } }",
534
+ "required": true,
535
+ "schema": {
536
+ "title": "options",
537
+ "type": "object"
538
+ }
539
+ }
540
+ ],
541
+ "output": {
542
+ "name": "result",
543
+ "type": "array",
544
+ "description": "A JSON Object containing status, code and the result",
545
+ "schema": {
546
+ "title": "result",
547
+ "type": "array"
548
+ }
549
+ },
550
+ "roles": [
551
+ "admin"
552
+ ],
553
+ "route": {
554
+ "verb": "POST",
555
+ "path": "/getDevicesFiltered"
556
+ },
557
+ "task": true
558
+ },
559
+ {
560
+ "name": "isAlive",
561
+ "summary": "Checks the status for the provided Appliance",
562
+ "description": "Checks the status for the provided Appliance",
563
+ "input": [
564
+ {
565
+ "name": "deviceName",
566
+ "type": "string",
567
+ "info": "An Appliance Device Name",
568
+ "required": true,
569
+ "schema": {
570
+ "title": "deviceName",
571
+ "type": "string"
572
+ }
573
+ }
574
+ ],
575
+ "output": {
576
+ "name": "result",
577
+ "type": "boolean",
578
+ "description": "A JSON Object containing status, code and the result",
579
+ "schema": {
580
+ "title": "result",
581
+ "type": "boolean"
582
+ }
583
+ },
584
+ "roles": [
585
+ "admin"
586
+ ],
587
+ "route": {
588
+ "verb": "POST",
589
+ "path": "/isAlive"
590
+ },
591
+ "task": true
592
+ },
593
+ {
594
+ "name": "getConfig",
595
+ "summary": "Gets a config for the provided Appliance",
596
+ "description": "Gets a config for the provided Appliance",
597
+ "input": [
598
+ {
599
+ "name": "deviceName",
600
+ "type": "string",
601
+ "info": "An Appliance Device Name",
602
+ "required": true,
603
+ "schema": {
604
+ "title": "deviceName",
605
+ "type": "string"
606
+ }
607
+ },
608
+ {
609
+ "name": "format",
610
+ "type": "string",
611
+ "info": "The format to be returned - this is ignored as we always return json",
612
+ "required": false,
613
+ "schema": {
614
+ "title": "format",
615
+ "type": "string"
616
+ }
617
+ }
618
+ ],
619
+ "output": {
620
+ "name": "result",
621
+ "type": "object",
622
+ "description": "A JSON Object containing status, code and the result",
623
+ "schema": {
624
+ "title": "result",
625
+ "type": "object"
626
+ }
627
+ },
628
+ "roles": [
629
+ "admin"
630
+ ],
631
+ "route": {
632
+ "verb": "POST",
633
+ "path": "/getConfig"
634
+ },
635
+ "task": true
636
+ },
637
+ {
638
+ "name": "iapGetDeviceCount",
639
+ "summary": "Gets a device count from the system",
640
+ "description": "Gets a device count from the system",
641
+ "input": [],
642
+ "output": {
643
+ "name": "result",
644
+ "type": "object",
645
+ "description": "A JSON Object containing status, code and the result",
646
+ "schema": {
647
+ "title": "result",
648
+ "type": "object"
649
+ }
650
+ },
651
+ "roles": [
652
+ "admin"
653
+ ],
654
+ "route": {
655
+ "verb": "POST",
656
+ "path": "/iapGetDeviceCount"
657
+ },
658
+ "task": true
659
+ },
660
+ {
661
+ "name": "postCreateNewGroup",
662
+ "summary": "postCreateNewGroup",
663
+ "description": "postCreateNewGroup",
664
+ "input": [
665
+ {
666
+ "name": "body",
667
+ "type": "object",
668
+ "info": ": object",
669
+ "required": true,
670
+ "schema": {
671
+ "allOf": [
672
+ {
673
+ "type": "object"
674
+ },
675
+ {
676
+ "example": {
677
+ "members": [
678
+ "a1bf9402-6939-4487-9349-49768a4cc1fe",
679
+ "@user2"
680
+ ]
681
+ }
682
+ }
683
+ ],
684
+ "definitions": {}
685
+ }
686
+ }
687
+ ],
688
+ "output": {
689
+ "name": "result",
690
+ "type": "object",
691
+ "description": "A JSON Object containing status, code and the result",
692
+ "schema": {
693
+ "title": "result",
694
+ "type": "object"
695
+ }
696
+ },
697
+ "roles": [
698
+ "admin"
699
+ ],
700
+ "route": {
701
+ "verb": "POST",
702
+ "path": "/postCreateNewGroup"
703
+ },
704
+ "task": true
705
+ },
706
+ {
707
+ "name": "getGroupInfo",
708
+ "summary": "getGroupInfo",
709
+ "description": "getGroupInfo",
710
+ "input": [
711
+ {
712
+ "name": "groupid",
713
+ "type": "string",
714
+ "info": ": string",
715
+ "required": true,
716
+ "schema": {
717
+ "title": "groupid",
718
+ "type": "string"
719
+ }
720
+ }
721
+ ],
722
+ "output": {
723
+ "name": "result",
724
+ "type": "object",
725
+ "description": "A JSON Object containing status, code and the result",
726
+ "schema": {
727
+ "title": "result",
728
+ "type": "object"
729
+ }
730
+ },
731
+ "roles": [
732
+ "admin"
733
+ ],
734
+ "route": {
735
+ "verb": "POST",
736
+ "path": "/getGroupInfo"
737
+ },
738
+ "task": true
739
+ },
740
+ {
741
+ "name": "deleteGroup",
742
+ "summary": "deleteGroup",
743
+ "description": "deleteGroup",
744
+ "input": [
745
+ {
746
+ "name": "groupid",
747
+ "type": "string",
748
+ "info": ": string",
749
+ "required": true,
750
+ "schema": {
751
+ "title": "groupid",
752
+ "type": "string"
753
+ }
754
+ }
755
+ ],
756
+ "output": {
757
+ "name": "result",
758
+ "type": "object",
759
+ "description": "A JSON Object containing status, code and the result",
760
+ "schema": {
761
+ "title": "result",
762
+ "type": "object"
763
+ }
764
+ },
765
+ "roles": [
766
+ "admin"
767
+ ],
768
+ "route": {
769
+ "verb": "POST",
770
+ "path": "/deleteGroup"
771
+ },
772
+ "task": true
773
+ },
774
+ {
775
+ "name": "postUpdateGroup",
776
+ "summary": "postUpdateGroup",
777
+ "description": "postUpdateGroup",
778
+ "input": [
779
+ {
780
+ "name": "groupid",
781
+ "type": "string",
782
+ "info": "groupid: string",
783
+ "required": true,
784
+ "schema": {
785
+ "title": "groupid",
786
+ "type": "string"
787
+ }
788
+ },
789
+ {
790
+ "name": "body",
791
+ "type": "object",
792
+ "info": "body: object",
793
+ "required": true,
794
+ "schema": {
795
+ "description": "body",
796
+ "definitions": {}
797
+ }
798
+ }
799
+ ],
800
+ "output": {
801
+ "name": "result",
802
+ "type": "object",
803
+ "description": "A JSON Object containing status, code and the result",
804
+ "schema": {
805
+ "title": "result",
806
+ "type": "object"
807
+ }
808
+ },
809
+ "roles": [
810
+ "admin"
811
+ ],
812
+ "route": {
813
+ "verb": "POST",
814
+ "path": "/postUpdateGroup"
815
+ },
816
+ "task": true
817
+ },
818
+ {
819
+ "name": "postAddMemberToGroup",
820
+ "summary": "postAddMemberToGroup",
821
+ "description": "postAddMemberToGroup",
822
+ "input": [
823
+ {
824
+ "name": "groupid",
825
+ "type": "string",
826
+ "info": ": string",
827
+ "required": true,
828
+ "schema": {
829
+ "title": "groupid",
830
+ "type": "string"
831
+ }
832
+ },
833
+ {
834
+ "name": "members",
835
+ "type": "string",
836
+ "info": ": string",
837
+ "required": true,
838
+ "schema": {
839
+ "title": "members",
840
+ "type": "string"
841
+ }
842
+ }
843
+ ],
844
+ "output": {
845
+ "name": "result",
846
+ "type": "object",
847
+ "description": "A JSON Object containing status, code and the result",
848
+ "schema": {
849
+ "title": "result",
850
+ "type": "object"
851
+ }
852
+ },
853
+ "roles": [
854
+ "admin"
855
+ ],
856
+ "route": {
857
+ "verb": "POST",
858
+ "path": "/postAddMemberToGroup"
859
+ },
860
+ "task": true
861
+ },
862
+ {
863
+ "name": "postRemoveGroupMember",
864
+ "summary": "postRemoveGroupMember",
865
+ "description": "postRemoveGroupMember",
866
+ "input": [
867
+ {
868
+ "name": "members",
869
+ "type": "string",
870
+ "info": ": string",
871
+ "required": true,
872
+ "schema": {
873
+ "title": "members",
874
+ "type": "string"
875
+ }
876
+ }
877
+ ],
878
+ "output": {
879
+ "name": "result",
880
+ "type": "object",
881
+ "description": "A JSON Object containing status, code and the result",
882
+ "schema": {
883
+ "title": "result",
884
+ "type": "object"
885
+ }
886
+ },
887
+ "roles": [
888
+ "admin"
889
+ ],
890
+ "route": {
891
+ "verb": "POST",
892
+ "path": "/postRemoveGroupMember"
893
+ },
894
+ "task": true
895
+ },
896
+ {
897
+ "name": "postNewMsgAfterConnection",
898
+ "summary": "postNewMsgAfterConnection",
899
+ "description": "postNewMsgAfterConnection",
900
+ "input": [
901
+ {
902
+ "name": "recipient",
903
+ "type": "string",
904
+ "info": ": string",
905
+ "required": true,
906
+ "schema": {
907
+ "title": "recipient",
908
+ "type": "string"
909
+ }
910
+ },
911
+ {
912
+ "name": "ttl",
913
+ "type": "number",
914
+ "info": ": 123",
915
+ "required": true,
916
+ "schema": {
917
+ "title": "ttl",
918
+ "type": "number"
919
+ }
920
+ },
921
+ {
922
+ "name": "bodyFormData",
923
+ "type": "string",
924
+ "info": ": string",
925
+ "required": true,
926
+ "schema": {
927
+ "title": "bodyFormData",
928
+ "type": "string"
929
+ }
930
+ }
931
+ ],
932
+ "output": {
933
+ "name": "result",
934
+ "type": "object",
935
+ "description": "A JSON Object containing status, code and the result",
936
+ "schema": {
937
+ "title": "result",
938
+ "type": "object"
939
+ }
940
+ },
941
+ "roles": [
942
+ "admin"
943
+ ],
944
+ "route": {
945
+ "verb": "POST",
946
+ "path": "/postNewMsgAFterConnection"
947
+ },
948
+ "task": true
949
+ },
950
+ {
951
+ "name": "getMsgInfo",
952
+ "summary": "getMsgInfo",
953
+ "description": "getMsgInfo",
954
+ "input": [
955
+ {
956
+ "name": "messageid",
957
+ "type": "string",
958
+ "info": ": string",
959
+ "required": true,
960
+ "schema": {
961
+ "title": "messageid",
962
+ "type": "string"
963
+ }
964
+ }
965
+ ],
966
+ "output": {
967
+ "name": "result",
968
+ "type": "object",
969
+ "description": "A JSON Object containing status, code and the result",
970
+ "schema": {
971
+ "title": "result",
972
+ "type": "object"
973
+ }
974
+ },
975
+ "roles": [
976
+ "admin"
977
+ ],
978
+ "route": {
979
+ "verb": "POST",
980
+ "path": "/getMsgInfo"
981
+ },
982
+ "task": true
983
+ },
984
+ {
985
+ "name": "getMsgRecipientInfo",
986
+ "summary": "getMsgRecipientInfo",
987
+ "description": "getMsgRecipientInfo",
988
+ "input": [
989
+ {
990
+ "name": "messageid",
991
+ "type": "string",
992
+ "info": ": string",
993
+ "required": true,
994
+ "schema": {
995
+ "title": "messageid",
996
+ "type": "string"
997
+ }
998
+ }
999
+ ],
1000
+ "output": {
1001
+ "name": "result",
1002
+ "type": "object",
1003
+ "description": "A JSON Object containing status, code and the result",
1004
+ "schema": {
1005
+ "title": "result",
1006
+ "type": "object"
1007
+ }
1008
+ },
1009
+ "roles": [
1010
+ "admin"
1011
+ ],
1012
+ "route": {
1013
+ "verb": "POST",
1014
+ "path": "/getMsgRecipientInfo"
1015
+ },
1016
+ "task": true
1017
+ },
1018
+ {
1019
+ "name": "postSetMsgStatus",
1020
+ "summary": "postSetMsgStatus",
1021
+ "description": "postSetMsgStatus",
1022
+ "input": [
1023
+ {
1024
+ "name": "read",
1025
+ "type": "string",
1026
+ "info": ": string",
1027
+ "required": true,
1028
+ "schema": {
1029
+ "title": "read",
1030
+ "type": "string"
1031
+ }
1032
+ },
1033
+ {
1034
+ "name": "delivered",
1035
+ "type": "string",
1036
+ "info": ": string",
1037
+ "required": true,
1038
+ "schema": {
1039
+ "title": "delivered",
1040
+ "type": "string"
1041
+ }
1042
+ }
1043
+ ],
1044
+ "output": {
1045
+ "name": "result",
1046
+ "type": "object",
1047
+ "description": "A JSON Object containing status, code and the result",
1048
+ "schema": {
1049
+ "title": "result",
1050
+ "type": "object"
1051
+ }
1052
+ },
1053
+ "roles": [
1054
+ "admin"
1055
+ ],
1056
+ "route": {
1057
+ "verb": "POST",
1058
+ "path": "/postSetMsgStatus"
1059
+ },
1060
+ "task": true
1061
+ },
1062
+ {
1063
+ "name": "deleteMsg",
1064
+ "summary": "deleteMsg",
1065
+ "description": "deleteMsg",
1066
+ "input": [
1067
+ {
1068
+ "name": "messageid",
1069
+ "type": "string",
1070
+ "info": ": string",
1071
+ "required": true,
1072
+ "schema": {
1073
+ "title": "messageid",
1074
+ "type": "string"
1075
+ }
1076
+ }
1077
+ ],
1078
+ "output": {
1079
+ "name": "result",
1080
+ "type": "object",
1081
+ "description": "A JSON Object containing status, code and the result",
1082
+ "schema": {
1083
+ "title": "result",
1084
+ "type": "object"
1085
+ }
1086
+ },
1087
+ "roles": [
1088
+ "admin"
1089
+ ],
1090
+ "route": {
1091
+ "verb": "POST",
1092
+ "path": "/deleteMsg"
1093
+ },
1094
+ "task": true
1095
+ },
1096
+ {
1097
+ "name": "getMsgAttachment",
1098
+ "summary": "getMsgAttachment",
1099
+ "description": "getMsgAttachment",
1100
+ "input": [],
1101
+ "output": {
1102
+ "name": "result",
1103
+ "type": "object",
1104
+ "description": "A JSON Object containing status, code and the result",
1105
+ "schema": {
1106
+ "title": "result",
1107
+ "type": "object"
1108
+ }
1109
+ },
1110
+ "roles": [
1111
+ "admin"
1112
+ ],
1113
+ "route": {
1114
+ "verb": "GET",
1115
+ "path": "/getMsgAttachment"
1116
+ },
1117
+ "task": true
1118
+ },
1119
+ {
1120
+ "name": "postNotifyUserAbtNewMsg",
1121
+ "summary": "postNotifyUserAbtNewMsg",
1122
+ "description": "postNotifyUserAbtNewMsg",
1123
+ "input": [
1124
+ {
1125
+ "name": "recipient",
1126
+ "type": "string",
1127
+ "info": ": string",
1128
+ "required": true,
1129
+ "schema": {
1130
+ "title": "recipient",
1131
+ "type": "string"
1132
+ }
1133
+ }
1134
+ ],
1135
+ "output": {
1136
+ "name": "result",
1137
+ "type": "object",
1138
+ "description": "A JSON Object containing status, code and the result",
1139
+ "schema": {
1140
+ "title": "result",
1141
+ "type": "object"
1142
+ }
1143
+ },
1144
+ "roles": [
1145
+ "admin"
1146
+ ],
1147
+ "route": {
1148
+ "verb": "POST",
1149
+ "path": "/postNotifyUserAbtNewMsg"
1150
+ },
1151
+ "task": true
1152
+ },
1153
+ {
1154
+ "name": "deleteUserNotifyAbtNewMsg",
1155
+ "summary": "deleteUserNotifyAbtNewMsg",
1156
+ "description": "deleteUserNotifyAbtNewMsg",
1157
+ "input": [
1158
+ {
1159
+ "name": "recipient",
1160
+ "type": "string",
1161
+ "info": ": string",
1162
+ "required": true,
1163
+ "schema": {
1164
+ "title": "recipient",
1165
+ "type": "string"
1166
+ }
1167
+ }
1168
+ ],
1169
+ "output": {
1170
+ "name": "result",
1171
+ "type": "object",
1172
+ "description": "A JSON Object containing status, code and the result",
1173
+ "schema": {
1174
+ "title": "result",
1175
+ "type": "object"
1176
+ }
1177
+ },
1178
+ "roles": [
1179
+ "admin"
1180
+ ],
1181
+ "route": {
1182
+ "verb": "POST",
1183
+ "path": "/deleteUserNotifyAbtNewMsg"
1184
+ },
1185
+ "task": true
1186
+ },
1187
+ {
1188
+ "name": "getMetadata",
1189
+ "summary": "getMetadata",
1190
+ "description": "getMetadata",
1191
+ "input": [
1192
+ {
1193
+ "name": "entity",
1194
+ "type": "string",
1195
+ "info": ": string",
1196
+ "required": true,
1197
+ "schema": {
1198
+ "title": "entity",
1199
+ "type": "string"
1200
+ }
1201
+ }
1202
+ ],
1203
+ "output": {
1204
+ "name": "result",
1205
+ "type": "object",
1206
+ "description": "A JSON Object containing status, code and the result",
1207
+ "schema": {
1208
+ "title": "result",
1209
+ "type": "object"
1210
+ }
1211
+ },
1212
+ "roles": [
1213
+ "admin"
1214
+ ],
1215
+ "route": {
1216
+ "verb": "POST",
1217
+ "path": "/getMetadata"
1218
+ },
1219
+ "task": true
1220
+ },
1221
+ {
1222
+ "name": "postMetadata",
1223
+ "summary": "postMetadata",
1224
+ "description": "postMetadata",
1225
+ "input": [
1226
+ {
1227
+ "name": "entity",
1228
+ "type": "string",
1229
+ "info": ": string",
1230
+ "required": true,
1231
+ "schema": {
1232
+ "title": "entity",
1233
+ "type": "string"
1234
+ }
1235
+ }
1236
+ ],
1237
+ "output": {
1238
+ "name": "result",
1239
+ "type": "object",
1240
+ "description": "A JSON Object containing status, code and the result",
1241
+ "schema": {
1242
+ "title": "result",
1243
+ "type": "object"
1244
+ }
1245
+ },
1246
+ "roles": [
1247
+ "admin"
1248
+ ],
1249
+ "route": {
1250
+ "verb": "POST",
1251
+ "path": "/postMetadata"
1252
+ },
1253
+ "task": true
1254
+ },
1255
+ {
1256
+ "name": "getRecentConversationList",
1257
+ "summary": "getRecentConversationList",
1258
+ "description": "getRecentConversationList",
1259
+ "input": [],
1260
+ "output": {
1261
+ "name": "result",
1262
+ "type": "object",
1263
+ "description": "A JSON Object containing status, code and the result",
1264
+ "schema": {
1265
+ "title": "result",
1266
+ "type": "object"
1267
+ }
1268
+ },
1269
+ "roles": [
1270
+ "admin"
1271
+ ],
1272
+ "route": {
1273
+ "verb": "GET",
1274
+ "path": "/getRecentConversationList"
1275
+ },
1276
+ "task": true
1277
+ },
1278
+ {
1279
+ "name": "postUsersOrListsToRoster",
1280
+ "summary": "postUsersOrListsToRoster",
1281
+ "description": "postUsersOrListsToRoster",
1282
+ "input": [
1283
+ {
1284
+ "name": "entity",
1285
+ "type": "string",
1286
+ "info": ": string",
1287
+ "required": true,
1288
+ "schema": {
1289
+ "title": "entity",
1290
+ "type": "string"
1291
+ }
1292
+ },
1293
+ {
1294
+ "name": "type",
1295
+ "type": "string",
1296
+ "info": ": string",
1297
+ "required": true,
1298
+ "schema": {
1299
+ "title": "type",
1300
+ "type": "string"
1301
+ }
1302
+ }
1303
+ ],
1304
+ "output": {
1305
+ "name": "result",
1306
+ "type": "object",
1307
+ "description": "A JSON Object containing status, code and the result",
1308
+ "schema": {
1309
+ "title": "result",
1310
+ "type": "object"
1311
+ }
1312
+ },
1313
+ "roles": [
1314
+ "admin"
1315
+ ],
1316
+ "route": {
1317
+ "verb": "POST",
1318
+ "path": "/postUsersOrListsToRoster"
1319
+ },
1320
+ "task": true
1321
+ },
1322
+ {
1323
+ "name": "deleteConversation",
1324
+ "summary": "deleteConversation",
1325
+ "description": "deleteConversation",
1326
+ "input": [
1327
+ {
1328
+ "name": "entity",
1329
+ "type": "string",
1330
+ "info": ": string",
1331
+ "required": true,
1332
+ "schema": {
1333
+ "title": "entity",
1334
+ "type": "string"
1335
+ }
1336
+ }
1337
+ ],
1338
+ "output": {
1339
+ "name": "result",
1340
+ "type": "object",
1341
+ "description": "A JSON Object containing status, code and the result",
1342
+ "schema": {
1343
+ "title": "result",
1344
+ "type": "object"
1345
+ }
1346
+ },
1347
+ "roles": [
1348
+ "admin"
1349
+ ],
1350
+ "route": {
1351
+ "verb": "POST",
1352
+ "path": "/deleteConversation"
1353
+ },
1354
+ "task": true
1355
+ },
1356
+ {
1357
+ "name": "getUserInfo",
1358
+ "summary": "getUserInfo",
1359
+ "description": "getUserInfo",
1360
+ "input": [
1361
+ {
1362
+ "name": "userid",
1363
+ "type": "string",
1364
+ "info": ": string",
1365
+ "required": true,
1366
+ "schema": {
1367
+ "title": "userid",
1368
+ "type": "string"
1369
+ }
1370
+ }
1371
+ ],
1372
+ "output": {
1373
+ "name": "result",
1374
+ "type": "object",
1375
+ "description": "A JSON Object containing status, code and the result",
1376
+ "schema": {
1377
+ "title": "result",
1378
+ "type": "object"
1379
+ }
1380
+ },
1381
+ "roles": [
1382
+ "admin"
1383
+ ],
1384
+ "route": {
1385
+ "verb": "POST",
1386
+ "path": "/getUserInfo"
1387
+ },
1388
+ "task": true
1389
+ },
1390
+ {
1391
+ "name": "getUnreadMsgCountAcrossAllOrg",
1392
+ "summary": "getUnreadMsgCountAcrossAllOrg",
1393
+ "description": "getUnreadMsgCountAcrossAllOrg",
1394
+ "input": [
1395
+ {
1396
+ "name": "userid",
1397
+ "type": "string",
1398
+ "info": ": string",
1399
+ "required": true,
1400
+ "schema": {
1401
+ "title": "userid",
1402
+ "type": "string"
1403
+ }
1404
+ }
1405
+ ],
1406
+ "output": {
1407
+ "name": "result",
1408
+ "type": "object",
1409
+ "description": "A JSON Object containing status, code and the result",
1410
+ "schema": {
1411
+ "title": "result",
1412
+ "type": "object"
1413
+ }
1414
+ },
1415
+ "roles": [
1416
+ "admin"
1417
+ ],
1418
+ "route": {
1419
+ "verb": "POST",
1420
+ "path": "/getUnreadMsgCountAcrossAllOrg"
1421
+ },
1422
+ "task": true
1423
+ },
1424
+ {
1425
+ "name": "getUnreadMsgCountForUserForSingleOrg",
1426
+ "summary": "getUnreadMsgCountForUserForSingleOrg",
1427
+ "description": "getUnreadMsgCountForUserForSingleOrg",
1428
+ "input": [
1429
+ {
1430
+ "name": "userid",
1431
+ "type": "string",
1432
+ "info": ": string",
1433
+ "required": true,
1434
+ "schema": {
1435
+ "title": "userid",
1436
+ "type": "string"
1437
+ }
1438
+ },
1439
+ {
1440
+ "name": "organization",
1441
+ "type": "string",
1442
+ "info": ": string",
1443
+ "required": true,
1444
+ "schema": {
1445
+ "title": "organization",
1446
+ "type": "string"
1447
+ }
1448
+ }
1449
+ ],
1450
+ "output": {
1451
+ "name": "result",
1452
+ "type": "object",
1453
+ "description": "A JSON Object containing status, code and the result",
1454
+ "schema": {
1455
+ "title": "result",
1456
+ "type": "object"
1457
+ }
1458
+ },
1459
+ "roles": [
1460
+ "admin"
1461
+ ],
1462
+ "route": {
1463
+ "verb": "POST",
1464
+ "path": "/getUnreadMsgCountForUserForSingleOrg"
1465
+ },
1466
+ "task": true
1467
+ },
1468
+ {
1469
+ "name": "getUserBasicDetails",
1470
+ "summary": "getUserBasicDetails",
1471
+ "description": "getUserBasicDetails",
1472
+ "input": [
1473
+ {
1474
+ "name": "userid",
1475
+ "type": "string",
1476
+ "info": ": string",
1477
+ "required": true,
1478
+ "schema": {
1479
+ "title": "userid",
1480
+ "type": "string"
1481
+ }
1482
+ }
1483
+ ],
1484
+ "output": {
1485
+ "name": "result",
1486
+ "type": "object",
1487
+ "description": "A JSON Object containing status, code and the result",
1488
+ "schema": {
1489
+ "title": "result",
1490
+ "type": "object"
1491
+ }
1492
+ },
1493
+ "roles": [
1494
+ "admin"
1495
+ ],
1496
+ "route": {
1497
+ "verb": "POST",
1498
+ "path": "/getUserBasicDetails"
1499
+ },
1500
+ "task": true
1501
+ },
1502
+ {
1503
+ "name": "postAddUserToOrg",
1504
+ "summary": "postAddUserToOrg",
1505
+ "description": "postAddUserToOrg",
1506
+ "input": [
1507
+ {
1508
+ "name": "userid",
1509
+ "type": "string",
1510
+ "info": ": string",
1511
+ "required": true,
1512
+ "schema": {
1513
+ "title": "userid",
1514
+ "type": "string"
1515
+ }
1516
+ },
1517
+ {
1518
+ "name": "organizationKey",
1519
+ "type": "string",
1520
+ "info": ": string",
1521
+ "required": true,
1522
+ "schema": {
1523
+ "title": "organizationKey",
1524
+ "type": "string"
1525
+ }
1526
+ }
1527
+ ],
1528
+ "output": {
1529
+ "name": "result",
1530
+ "type": "object",
1531
+ "description": "A JSON Object containing status, code and the result",
1532
+ "schema": {
1533
+ "title": "result",
1534
+ "type": "object"
1535
+ }
1536
+ },
1537
+ "roles": [
1538
+ "admin"
1539
+ ],
1540
+ "route": {
1541
+ "verb": "POST",
1542
+ "path": "/postAddUserToOrg"
1543
+ },
1544
+ "task": true
1545
+ },
1546
+ {
1547
+ "name": "deleteUserFromOrg",
1548
+ "summary": "deleteUserFromOrg",
1549
+ "description": "deleteUserFromOrg",
1550
+ "input": [
1551
+ {
1552
+ "name": "userid",
1553
+ "type": "string",
1554
+ "info": ": string",
1555
+ "required": true,
1556
+ "schema": {
1557
+ "title": "userid",
1558
+ "type": "string"
1559
+ }
1560
+ },
1561
+ {
1562
+ "name": "organization",
1563
+ "type": "string",
1564
+ "info": ": string",
1565
+ "required": true,
1566
+ "schema": {
1567
+ "title": "organization",
1568
+ "type": "string"
1569
+ }
1570
+ }
1571
+ ],
1572
+ "output": {
1573
+ "name": "result",
1574
+ "type": "object",
1575
+ "description": "A JSON Object containing status, code and the result",
1576
+ "schema": {
1577
+ "title": "result",
1578
+ "type": "object"
1579
+ }
1580
+ },
1581
+ "roles": [
1582
+ "admin"
1583
+ ],
1584
+ "route": {
1585
+ "verb": "POST",
1586
+ "path": "/deleteUserFromOrg"
1587
+ },
1588
+ "task": true
1589
+ },
1590
+ {
1591
+ "name": "getUserRole",
1592
+ "summary": "getUserRole",
1593
+ "description": "getUserRole",
1594
+ "input": [
1595
+ {
1596
+ "name": "userid",
1597
+ "type": "string",
1598
+ "info": ": string",
1599
+ "required": true,
1600
+ "schema": {
1601
+ "title": "userid",
1602
+ "type": "string"
1603
+ }
1604
+ },
1605
+ {
1606
+ "name": "organization",
1607
+ "type": "string",
1608
+ "info": ": string",
1609
+ "required": true,
1610
+ "schema": {
1611
+ "title": "organization",
1612
+ "type": "string"
1613
+ }
1614
+ }
1615
+ ],
1616
+ "output": {
1617
+ "name": "result",
1618
+ "type": "object",
1619
+ "description": "A JSON Object containing status, code and the result",
1620
+ "schema": {
1621
+ "title": "result",
1622
+ "type": "object"
1623
+ }
1624
+ },
1625
+ "roles": [
1626
+ "admin"
1627
+ ],
1628
+ "route": {
1629
+ "verb": "POST",
1630
+ "path": "/getUserRole"
1631
+ },
1632
+ "task": true
1633
+ },
1634
+ {
1635
+ "name": "postSpecificRoleToUser",
1636
+ "summary": "postSpecificRoleToUser",
1637
+ "description": "postSpecificRoleToUser",
1638
+ "input": [
1639
+ {
1640
+ "name": "userid",
1641
+ "type": "string",
1642
+ "info": ": string",
1643
+ "required": true,
1644
+ "schema": {
1645
+ "title": "userid",
1646
+ "type": "string"
1647
+ }
1648
+ },
1649
+ {
1650
+ "name": "organization",
1651
+ "type": "string",
1652
+ "info": ": string",
1653
+ "required": true,
1654
+ "schema": {
1655
+ "title": "organization",
1656
+ "type": "string"
1657
+ }
1658
+ },
1659
+ {
1660
+ "name": "role",
1661
+ "type": "string",
1662
+ "info": ": string",
1663
+ "required": true,
1664
+ "schema": {
1665
+ "title": "role",
1666
+ "type": "string"
1667
+ }
1668
+ }
1669
+ ],
1670
+ "output": {
1671
+ "name": "result",
1672
+ "type": "object",
1673
+ "description": "A JSON Object containing status, code and the result",
1674
+ "schema": {
1675
+ "title": "result",
1676
+ "type": "object"
1677
+ }
1678
+ },
1679
+ "roles": [
1680
+ "admin"
1681
+ ],
1682
+ "route": {
1683
+ "verb": "POST",
1684
+ "path": "/postSpecificRoleToUser"
1685
+ },
1686
+ "task": true
1687
+ },
1688
+ {
1689
+ "name": "deleteUserRole",
1690
+ "summary": "deleteUserRole",
1691
+ "description": "deleteUserRole",
1692
+ "input": [
1693
+ {
1694
+ "name": "userid",
1695
+ "type": "string",
1696
+ "info": ": string",
1697
+ "required": true,
1698
+ "schema": {
1699
+ "title": "userid",
1700
+ "type": "string"
1701
+ }
1702
+ },
1703
+ {
1704
+ "name": "organization",
1705
+ "type": "string",
1706
+ "info": ": string",
1707
+ "required": true,
1708
+ "schema": {
1709
+ "title": "organization",
1710
+ "type": "string"
1711
+ }
1712
+ },
1713
+ {
1714
+ "name": "role",
1715
+ "type": "string",
1716
+ "info": ": string",
1717
+ "required": true,
1718
+ "schema": {
1719
+ "title": "role",
1720
+ "type": "string"
1721
+ }
1722
+ }
1723
+ ],
1724
+ "output": {
1725
+ "name": "result",
1726
+ "type": "object",
1727
+ "description": "A JSON Object containing status, code and the result",
1728
+ "schema": {
1729
+ "title": "result",
1730
+ "type": "object"
1731
+ }
1732
+ },
1733
+ "roles": [
1734
+ "admin"
1735
+ ],
1736
+ "route": {
1737
+ "verb": "POST",
1738
+ "path": "/deleteUserRole"
1739
+ },
1740
+ "task": true
1741
+ },
1742
+ {
1743
+ "name": "postUpdateUsers",
1744
+ "summary": "postUpdateUsers",
1745
+ "description": "postUpdateUsers",
1746
+ "input": [
1747
+ {
1748
+ "name": "uniqueId",
1749
+ "type": "string",
1750
+ "info": ": string",
1751
+ "required": true,
1752
+ "schema": {
1753
+ "title": "uniqueId",
1754
+ "type": "string"
1755
+ }
1756
+ },
1757
+ {
1758
+ "name": "emails",
1759
+ "type": "string",
1760
+ "info": ": string",
1761
+ "required": true,
1762
+ "schema": {
1763
+ "title": "emails",
1764
+ "type": "string"
1765
+ }
1766
+ },
1767
+ {
1768
+ "name": "phones",
1769
+ "type": "string",
1770
+ "info": ": string",
1771
+ "required": true,
1772
+ "schema": {
1773
+ "title": "phones",
1774
+ "type": "string"
1775
+ }
1776
+ },
1777
+ {
1778
+ "name": "firstName",
1779
+ "type": "string",
1780
+ "info": ": string",
1781
+ "required": true,
1782
+ "schema": {
1783
+ "title": "firstName",
1784
+ "type": "string"
1785
+ }
1786
+ },
1787
+ {
1788
+ "name": "lastName",
1789
+ "type": "string",
1790
+ "info": ": string",
1791
+ "required": true,
1792
+ "schema": {
1793
+ "title": "lastName",
1794
+ "type": "string"
1795
+ }
1796
+ }
1797
+ ],
1798
+ "output": {
1799
+ "name": "result",
1800
+ "type": "object",
1801
+ "description": "A JSON Object containing status, code and the result",
1802
+ "schema": {
1803
+ "title": "result",
1804
+ "type": "object"
1805
+ }
1806
+ },
1807
+ "roles": [
1808
+ "admin"
1809
+ ],
1810
+ "route": {
1811
+ "verb": "POST",
1812
+ "path": "/postUpdateUsers"
1813
+ },
1814
+ "task": true
1815
+ },
1816
+ {
1817
+ "name": "getSseEventStream",
1818
+ "summary": "getSseEventStream",
1819
+ "description": "getSseEventStream",
1820
+ "input": [],
1821
+ "output": {
1822
+ "name": "result",
1823
+ "type": "object",
1824
+ "description": "A JSON Object containing status, code and the result",
1825
+ "schema": {
1826
+ "title": "result",
1827
+ "type": "object"
1828
+ }
1829
+ },
1830
+ "roles": [
1831
+ "admin"
1832
+ ],
1833
+ "route": {
1834
+ "verb": "GET",
1835
+ "path": "/getSseEventStream"
1836
+ },
1837
+ "task": true
1838
+ },
1839
+ {
1840
+ "name": "deleteEventsConnections",
1841
+ "summary": "deleteEventsConnections",
1842
+ "description": "deleteEventsConnections",
1843
+ "input": [],
1844
+ "output": {
1845
+ "name": "result",
1846
+ "type": "object",
1847
+ "description": "A JSON Object containing status, code and the result",
1848
+ "schema": {
1849
+ "title": "result",
1850
+ "type": "object"
1851
+ }
1852
+ },
1853
+ "roles": [
1854
+ "admin"
1855
+ ],
1856
+ "route": {
1857
+ "verb": "GET",
1858
+ "path": "/deleteEventsConnections"
1859
+ },
1860
+ "task": true
1861
+ },
1862
+ {
1863
+ "name": "postAckEvents",
1864
+ "summary": "postAckEvents",
1865
+ "description": "postAckEvents",
1866
+ "input": [
1867
+ {
1868
+ "name": "events",
1869
+ "type": "string",
1870
+ "info": ": string",
1871
+ "required": true,
1872
+ "schema": {
1873
+ "title": "events",
1874
+ "type": "string"
1875
+ }
1876
+ }
1877
+ ],
1878
+ "output": {
1879
+ "name": "result",
1880
+ "type": "object",
1881
+ "description": "A JSON Object containing status, code and the result",
1882
+ "schema": {
1883
+ "title": "result",
1884
+ "type": "object"
1885
+ }
1886
+ },
1887
+ "roles": [
1888
+ "admin"
1889
+ ],
1890
+ "route": {
1891
+ "verb": "POST",
1892
+ "path": "/postAckEvents"
1893
+ },
1894
+ "task": true
1895
+ },
1896
+ {
1897
+ "name": "postCreateTigerTxtOrg",
1898
+ "summary": "postCreateTigerTxtOrg",
1899
+ "description": "postCreateTigerTxtOrg",
1900
+ "input": [
1901
+ {
1902
+ "name": "name",
1903
+ "type": "string",
1904
+ "info": ": string",
1905
+ "required": true,
1906
+ "schema": {
1907
+ "title": "name",
1908
+ "type": "string"
1909
+ }
1910
+ },
1911
+ {
1912
+ "name": "billing",
1913
+ "type": "string",
1914
+ "info": ": string",
1915
+ "required": true,
1916
+ "schema": {
1917
+ "title": "billing",
1918
+ "type": "string"
1919
+ }
1920
+ }
1921
+ ],
1922
+ "output": {
1923
+ "name": "result",
1924
+ "type": "object",
1925
+ "description": "A JSON Object containing status, code and the result",
1926
+ "schema": {
1927
+ "title": "result",
1928
+ "type": "object"
1929
+ }
1930
+ },
1931
+ "roles": [
1932
+ "admin"
1933
+ ],
1934
+ "route": {
1935
+ "verb": "POST",
1936
+ "path": "/postCreateTigerTxtOrg"
1937
+ },
1938
+ "task": true
1939
+ },
1940
+ {
1941
+ "name": "postUpdateTigerTxtOrg",
1942
+ "summary": "postUpdateTigerTxtOrg",
1943
+ "description": "postUpdateTigerTxtOrg",
1944
+ "input": [
1945
+ {
1946
+ "name": "organization",
1947
+ "type": "string",
1948
+ "info": ": string",
1949
+ "required": true,
1950
+ "schema": {
1951
+ "title": "organization",
1952
+ "type": "string"
1953
+ }
1954
+ },
1955
+ {
1956
+ "name": "name",
1957
+ "type": "string",
1958
+ "info": ": string",
1959
+ "required": true,
1960
+ "schema": {
1961
+ "title": "name",
1962
+ "type": "string"
1963
+ }
1964
+ }
1965
+ ],
1966
+ "output": {
1967
+ "name": "result",
1968
+ "type": "object",
1969
+ "description": "A JSON Object containing status, code and the result",
1970
+ "schema": {
1971
+ "title": "result",
1972
+ "type": "object"
1973
+ }
1974
+ },
1975
+ "roles": [
1976
+ "admin"
1977
+ ],
1978
+ "route": {
1979
+ "verb": "POST",
1980
+ "path": "/postUpdateTigerTxtOrg"
1981
+ },
1982
+ "task": true
1983
+ },
1984
+ {
1985
+ "name": "getTigerTxtOrgInfo",
1986
+ "summary": "getTigerTxtOrgInfo",
1987
+ "description": "getTigerTxtOrgInfo",
1988
+ "input": [
1989
+ {
1990
+ "name": "organization",
1991
+ "type": "string",
1992
+ "info": ": string",
1993
+ "required": true,
1994
+ "schema": {
1995
+ "title": "organization",
1996
+ "type": "string"
1997
+ }
1998
+ }
1999
+ ],
2000
+ "output": {
2001
+ "name": "result",
2002
+ "type": "object",
2003
+ "description": "A JSON Object containing status, code and the result",
2004
+ "schema": {
2005
+ "title": "result",
2006
+ "type": "object"
2007
+ }
2008
+ },
2009
+ "roles": [
2010
+ "admin"
2011
+ ],
2012
+ "route": {
2013
+ "verb": "POST",
2014
+ "path": "/getTigerTxtOrgInfo"
2015
+ },
2016
+ "task": true
2017
+ },
2018
+ {
2019
+ "name": "postCreateCustomDirectoryForOrg",
2020
+ "summary": "postCreateCustomDirectoryForOrg",
2021
+ "description": "postCreateCustomDirectoryForOrg",
2022
+ "input": [
2023
+ {
2024
+ "name": "organization",
2025
+ "type": "string",
2026
+ "info": ": string",
2027
+ "required": true,
2028
+ "schema": {
2029
+ "title": "organization",
2030
+ "type": "string"
2031
+ }
2032
+ }
2033
+ ],
2034
+ "output": {
2035
+ "name": "result",
2036
+ "type": "object",
2037
+ "description": "A JSON Object containing status, code and the result",
2038
+ "schema": {
2039
+ "title": "result",
2040
+ "type": "object"
2041
+ }
2042
+ },
2043
+ "roles": [
2044
+ "admin"
2045
+ ],
2046
+ "route": {
2047
+ "verb": "POST",
2048
+ "path": "/postCreateCustomDirectoryForOrg"
2049
+ },
2050
+ "task": true
2051
+ },
2052
+ {
2053
+ "name": "deleteTigerTxtOrg",
2054
+ "summary": "deleteTigerTxtOrg",
2055
+ "description": "deleteTigerTxtOrg",
2056
+ "input": [
2057
+ {
2058
+ "name": "organizationid",
2059
+ "type": "string",
2060
+ "info": ": string",
2061
+ "required": true,
2062
+ "schema": {
2063
+ "title": "organizationid",
2064
+ "type": "string"
2065
+ }
2066
+ }
2067
+ ],
2068
+ "output": {
2069
+ "name": "result",
2070
+ "type": "object",
2071
+ "description": "A JSON Object containing status, code and the result",
2072
+ "schema": {
2073
+ "title": "result",
2074
+ "type": "object"
2075
+ }
2076
+ },
2077
+ "roles": [
2078
+ "admin"
2079
+ ],
2080
+ "route": {
2081
+ "verb": "POST",
2082
+ "path": "/deleteTigerTxtOrg"
2083
+ },
2084
+ "task": true
2085
+ },
2086
+ {
2087
+ "name": "postReturnIntegrationInfo",
2088
+ "summary": "postReturnIntegrationInfo",
2089
+ "description": "postReturnIntegrationInfo",
2090
+ "input": [
2091
+ {
2092
+ "name": "body",
2093
+ "type": "object",
2094
+ "info": ": object",
2095
+ "required": true,
2096
+ "schema": {
2097
+ "allOf": [
2098
+ {
2099
+ "type": "object"
2100
+ },
2101
+ {
2102
+ "example": {
2103
+ "id": "a1bf9402-6939-4487-9349-49768a4cc1fe"
2104
+ }
2105
+ }
2106
+ ],
2107
+ "definitions": {}
2108
+ }
2109
+ }
2110
+ ],
2111
+ "output": {
2112
+ "name": "result",
2113
+ "type": "object",
2114
+ "description": "A JSON Object containing status, code and the result",
2115
+ "schema": {
2116
+ "title": "result",
2117
+ "type": "object"
2118
+ }
2119
+ },
2120
+ "roles": [
2121
+ "admin"
2122
+ ],
2123
+ "route": {
2124
+ "verb": "POST",
2125
+ "path": "/postReturnIntegrationInfo"
2126
+ },
2127
+ "task": true
2128
+ },
2129
+ {
2130
+ "name": "postDeleteAllMappingsOnDeletingIntegration",
2131
+ "summary": "postDeleteAllMappingsOnDeletingIntegration",
2132
+ "description": "postDeleteAllMappingsOnDeletingIntegration",
2133
+ "input": [
2134
+ {
2135
+ "name": "body",
2136
+ "type": "object",
2137
+ "info": ": object",
2138
+ "required": true,
2139
+ "schema": {
2140
+ "allOf": [
2141
+ {
2142
+ "type": "object"
2143
+ },
2144
+ {
2145
+ "example": {
2146
+ "id": "a1bf9402-6939-4487-9349-49768a4cc1fe"
2147
+ }
2148
+ }
2149
+ ],
2150
+ "definitions": {}
2151
+ }
2152
+ }
2153
+ ],
2154
+ "output": {
2155
+ "name": "result",
2156
+ "type": "object",
2157
+ "description": "A JSON Object containing status, code and the result",
2158
+ "schema": {
2159
+ "title": "result",
2160
+ "type": "object"
2161
+ }
2162
+ },
2163
+ "roles": [
2164
+ "admin"
2165
+ ],
2166
+ "route": {
2167
+ "verb": "POST",
2168
+ "path": "/postDeleteAllMappingsOnDeletingIntegration"
2169
+ },
2170
+ "task": true
2171
+ },
2172
+ {
2173
+ "name": "postDifferentIntegrationIDOfOrg",
2174
+ "summary": "postDifferentIntegrationIDOfOrg",
2175
+ "description": "postDifferentIntegrationIDOfOrg",
2176
+ "input": [
2177
+ {
2178
+ "name": "body",
2179
+ "type": "object",
2180
+ "info": ": object",
2181
+ "required": true,
2182
+ "schema": {
2183
+ "allOf": [
2184
+ {
2185
+ "type": "object"
2186
+ },
2187
+ {
2188
+ "example": {
2189
+ "org": "j4TZWC00B969t8CdZZZHe6Cit"
2190
+ }
2191
+ }
2192
+ ],
2193
+ "definitions": {}
2194
+ }
2195
+ }
2196
+ ],
2197
+ "output": {
2198
+ "name": "result",
2199
+ "type": "object",
2200
+ "description": "A JSON Object containing status, code and the result",
2201
+ "schema": {
2202
+ "title": "result",
2203
+ "type": "object"
2204
+ }
2205
+ },
2206
+ "roles": [
2207
+ "admin"
2208
+ ],
2209
+ "route": {
2210
+ "verb": "POST",
2211
+ "path": "/postDifferentIntegrationIDOfOrg"
2212
+ },
2213
+ "task": true
2214
+ },
2215
+ {
2216
+ "name": "postAccessOrganizationKey",
2217
+ "summary": "postAccessOrganizationKey",
2218
+ "description": "postAccessOrganizationKey",
2219
+ "input": [
2220
+ {
2221
+ "name": "body",
2222
+ "type": "string",
2223
+ "info": ": string",
2224
+ "required": true,
2225
+ "schema": {
2226
+ "type": "string",
2227
+ "example": "{\"org\":\"j4TZWCOOA969t8CdYRHd6Cit\", \"partner\":\"org partner name\", \"secret\":\"secret key\"]}",
2228
+ "definitions": {}
2229
+ }
2230
+ }
2231
+ ],
2232
+ "output": {
2233
+ "name": "result",
2234
+ "type": "object",
2235
+ "description": "A JSON Object containing status, code and the result",
2236
+ "schema": {
2237
+ "title": "result",
2238
+ "type": "object"
2239
+ }
2240
+ },
2241
+ "roles": [
2242
+ "admin"
2243
+ ],
2244
+ "route": {
2245
+ "verb": "POST",
2246
+ "path": "/postAccessOrganizationKey"
2247
+ },
2248
+ "task": true
2249
+ },
2250
+ {
2251
+ "name": "postReturnAllMappings",
2252
+ "summary": "postReturnAllMappings",
2253
+ "description": "postReturnAllMappings",
2254
+ "input": [
2255
+ {
2256
+ "name": "body",
2257
+ "type": "object",
2258
+ "info": ": object",
2259
+ "required": true,
2260
+ "schema": {
2261
+ "allOf": [
2262
+ {
2263
+ "type": "object"
2264
+ },
2265
+ {
2266
+ "example": {
2267
+ "id": "a1bf9402-6939-4487-9349-49768a4cc1fe"
2268
+ }
2269
+ }
2270
+ ],
2271
+ "definitions": {}
2272
+ }
2273
+ }
2274
+ ],
2275
+ "output": {
2276
+ "name": "result",
2277
+ "type": "object",
2278
+ "description": "A JSON Object containing status, code and the result",
2279
+ "schema": {
2280
+ "title": "result",
2281
+ "type": "object"
2282
+ }
2283
+ },
2284
+ "roles": [
2285
+ "admin"
2286
+ ],
2287
+ "route": {
2288
+ "verb": "POST",
2289
+ "path": "/postReturnAllMappings"
2290
+ },
2291
+ "task": true
2292
+ },
2293
+ {
2294
+ "name": "postUserOrRolesMappings",
2295
+ "summary": "postUserOrRolesMappings",
2296
+ "description": "postUserOrRolesMappings",
2297
+ "input": [
2298
+ {
2299
+ "name": "body",
2300
+ "type": "object",
2301
+ "info": ": object",
2302
+ "required": true,
2303
+ "schema": {
2304
+ "allOf": [
2305
+ {
2306
+ "type": "object"
2307
+ },
2308
+ {
2309
+ "example": {
2310
+ "id": "96bccdc4-7125-4f5c-a718-2c05039edcd3",
2311
+ "mappings": [
2312
+ {
2313
+ "type": "user",
2314
+ "external_id": "1",
2315
+ "internal_id": "a2e07931-ea27-4bf5-bfb9-8e6f04c2ce60"
2316
+ }
2317
+ ]
2318
+ }
2319
+ }
2320
+ ],
2321
+ "definitions": {}
2322
+ }
2323
+ }
2324
+ ],
2325
+ "output": {
2326
+ "name": "result",
2327
+ "type": "object",
2328
+ "description": "A JSON Object containing status, code and the result",
2329
+ "schema": {
2330
+ "title": "result",
2331
+ "type": "object"
2332
+ }
2333
+ },
2334
+ "roles": [
2335
+ "admin"
2336
+ ],
2337
+ "route": {
2338
+ "verb": "POST",
2339
+ "path": "/postUserOrRolesMappings"
2340
+ },
2341
+ "task": true
2342
+ },
2343
+ {
2344
+ "name": "postDeleteAllMapings",
2345
+ "summary": "postDeleteAllMapings",
2346
+ "description": "postDeleteAllMapings",
2347
+ "input": [
2348
+ {
2349
+ "name": "body",
2350
+ "type": "object",
2351
+ "info": ": object",
2352
+ "required": true,
2353
+ "schema": {
2354
+ "allOf": [
2355
+ {
2356
+ "type": "object"
2357
+ },
2358
+ {
2359
+ "example": {
2360
+ "id": "a1bf9402-6939-4487-9349-49768a4cc1fe"
2361
+ }
2362
+ }
2363
+ ],
2364
+ "definitions": {}
2365
+ }
2366
+ }
2367
+ ],
2368
+ "output": {
2369
+ "name": "result",
2370
+ "type": "object",
2371
+ "description": "A JSON Object containing status, code and the result",
2372
+ "schema": {
2373
+ "title": "result",
2374
+ "type": "object"
2375
+ }
2376
+ },
2377
+ "roles": [
2378
+ "admin"
2379
+ ],
2380
+ "route": {
2381
+ "verb": "POST",
2382
+ "path": "/postDeleteAllMapings"
2383
+ },
2384
+ "task": true
2385
+ },
2386
+ {
2387
+ "name": "postGetIntegrationInfo",
2388
+ "summary": "postGetIntegrationInfo",
2389
+ "description": "postGetIntegrationInfo",
2390
+ "input": [
2391
+ {
2392
+ "name": "body",
2393
+ "type": "object",
2394
+ "info": ": object",
2395
+ "required": true,
2396
+ "schema": {
2397
+ "allOf": [
2398
+ {
2399
+ "type": "object"
2400
+ },
2401
+ {
2402
+ "example": {
2403
+ "id": "96bccdc4-7125-4f5c-a718-2c05039edcd3",
2404
+ "mappings": [
2405
+ {
2406
+ "type": "user",
2407
+ "external_id": "1",
2408
+ "internal_id": "a2e07931-ea27-4bf5-bfb9-8e6f04c2ce60"
2409
+ }
2410
+ ]
2411
+ }
2412
+ }
2413
+ ],
2414
+ "definitions": {}
2415
+ }
2416
+ }
2417
+ ],
2418
+ "output": {
2419
+ "name": "result",
2420
+ "type": "object",
2421
+ "description": "A JSON Object containing status, code and the result",
2422
+ "schema": {
2423
+ "title": "result",
2424
+ "type": "object"
2425
+ }
2426
+ },
2427
+ "roles": [
2428
+ "admin"
2429
+ ],
2430
+ "route": {
2431
+ "verb": "POST",
2432
+ "path": "/postGetIntegrationInfo"
2433
+ },
2434
+ "task": true
2435
+ },
2436
+ {
2437
+ "name": "postSubmitPayloadOfCSVInfo",
2438
+ "summary": "postSubmitPayloadOfCSVInfo",
2439
+ "description": "postSubmitPayloadOfCSVInfo",
2440
+ "input": [
2441
+ {
2442
+ "name": "body",
2443
+ "type": "object",
2444
+ "info": ": object",
2445
+ "required": true,
2446
+ "schema": {
2447
+ "allOf": [
2448
+ {
2449
+ "type": "object"
2450
+ },
2451
+ {
2452
+ "example": {
2453
+ "id": "0d505f86-e273-4dc5-ad38-0cc6ba275fea",
2454
+ "tz": "America/New_York",
2455
+ "data": [
2456
+ {
2457
+ "user": "0a1c2541-f936-4ce6-a1f0-b30aaefe7264",
2458
+ "role": "218093a7-4b93-4793-a25f-e745f55b8a8e",
2459
+ "stime": "2017-10-12T08:00:00Z",
2460
+ "etime": "2017-10-12T14:00:00Z"
2461
+ }
2462
+ ]
2463
+ }
2464
+ }
2465
+ ],
2466
+ "definitions": {}
2467
+ }
2468
+ }
2469
+ ],
2470
+ "output": {
2471
+ "name": "result",
2472
+ "type": "object",
2473
+ "description": "A JSON Object containing status, code and the result",
2474
+ "schema": {
2475
+ "title": "result",
2476
+ "type": "object"
2477
+ }
2478
+ },
2479
+ "roles": [
2480
+ "admin"
2481
+ ],
2482
+ "route": {
2483
+ "verb": "POST",
2484
+ "path": "/postSubmitPayloadOfCSVInfo"
2485
+ },
2486
+ "task": true
2487
+ },
2488
+ {
2489
+ "name": "postpostSubmitPayloadOfCSVInfo",
2490
+ "summary": "PostpostSubmitPayloadOfCSVInfo",
2491
+ "description": "postSubmitPayloadOfCSVInfo",
2492
+ "input": [
2493
+ {
2494
+ "name": "body",
2495
+ "type": "string",
2496
+ "info": ": string",
2497
+ "required": true,
2498
+ "schema": {
2499
+ "type": "string",
2500
+ "example": "@schedules.csv",
2501
+ "definitions": {}
2502
+ }
2503
+ }
2504
+ ],
2505
+ "output": {
2506
+ "name": "result",
2507
+ "type": "object",
2508
+ "description": "A JSON Object containing status, code and the result",
2509
+ "schema": {
2510
+ "title": "result",
2511
+ "type": "object"
2512
+ }
2513
+ },
2514
+ "roles": [
2515
+ "admin"
2516
+ ],
2517
+ "route": {
2518
+ "verb": "POST",
2519
+ "path": "/postpostSubmitPayloadOfCSVInfo"
2520
+ },
2521
+ "task": true
2522
+ },
2523
+ {
2524
+ "name": "postRetrieveLastCsvFile",
2525
+ "summary": "PostRetrieveLastCsvFile",
2526
+ "description": "PostRetrieveLastCsvFile",
2527
+ "input": [
2528
+ {
2529
+ "name": "body",
2530
+ "type": "object",
2531
+ "info": ": object",
2532
+ "required": true,
2533
+ "schema": {
2534
+ "allOf": [
2535
+ {
2536
+ "type": "object"
2537
+ },
2538
+ {
2539
+ "example": {
2540
+ "org": "j4TZXC00B969t8CdZZZHe6Cit",
2541
+ "id": "a1bf9402-6939-4487-9349-49768a4cc1dd"
2542
+ }
2543
+ }
2544
+ ],
2545
+ "definitions": {}
2546
+ }
2547
+ }
2548
+ ],
2549
+ "output": {
2550
+ "name": "result",
2551
+ "type": "object",
2552
+ "description": "A JSON Object containing status, code and the result",
2553
+ "schema": {
2554
+ "title": "result",
2555
+ "type": "object"
2556
+ }
2557
+ },
2558
+ "roles": [
2559
+ "admin"
2560
+ ],
2561
+ "route": {
2562
+ "verb": "POST",
2563
+ "path": "/postRetrieveLastCsvFile"
2564
+ },
2565
+ "task": true
2566
+ },
2567
+ {
2568
+ "name": "postSubmitPayloadOfShiftInfo",
2569
+ "summary": "postSubmitPayloadOfShiftInfo",
2570
+ "description": "postSubmitPayloadOfShiftInfo",
2571
+ "input": [
2572
+ {
2573
+ "name": "body",
2574
+ "type": "string",
2575
+ "info": ": string",
2576
+ "required": true,
2577
+ "schema": {
2578
+ "type": "string",
2579
+ "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\"]}",
2580
+ "definitions": {}
2581
+ }
2582
+ }
2583
+ ],
2584
+ "output": {
2585
+ "name": "result",
2586
+ "type": "object",
2587
+ "description": "A JSON Object containing status, code and the result",
2588
+ "schema": {
2589
+ "title": "result",
2590
+ "type": "object"
2591
+ }
2592
+ },
2593
+ "roles": [
2594
+ "admin"
2595
+ ],
2596
+ "route": {
2597
+ "verb": "POST",
2598
+ "path": "/postSubmitPayloadOfShiftInfo"
2599
+ },
2600
+ "task": true
2601
+ },
2602
+ {
2603
+ "name": "postSearchEntities",
2604
+ "summary": "postSearchEntities",
2605
+ "description": "postSearchEntities",
2606
+ "input": [
2607
+ {
2608
+ "name": "body",
2609
+ "type": "object",
2610
+ "info": "body: object",
2611
+ "required": true,
2612
+ "schema": {
2613
+ "description": "body",
2614
+ "example": {
2615
+ "type": [
2616
+ "group"
2617
+ ],
2618
+ "directory": "organization_id",
2619
+ "display_name": "search_term"
2620
+ },
2621
+ "definitions": {}
2622
+ }
2623
+ }
2624
+ ],
2625
+ "output": {
2626
+ "name": "result",
2627
+ "type": "object",
2628
+ "description": "A JSON Object containing status, code and the result",
2629
+ "schema": {
2630
+ "title": "result",
2631
+ "type": "object"
2632
+ }
2633
+ },
2634
+ "roles": [
2635
+ "admin"
2636
+ ],
2637
+ "route": {
2638
+ "verb": "POST",
2639
+ "path": "/postSearchEntities"
2640
+ },
2641
+ "task": true
2642
+ }
2643
+ ],
2644
+ "views": []
2645
+ }