@itentialopensource/adapter-thingspace 0.3.5 → 0.3.7

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/.eslintrc.js +1 -0
  2. package/AUTH.md +4 -4
  3. package/BROKER.md +4 -4
  4. package/CALLS.md +9 -9
  5. package/ENHANCE.md +3 -3
  6. package/PROPERTIES.md +25 -10
  7. package/README.md +24 -23
  8. package/SUMMARY.md +2 -2
  9. package/SYSTEMINFO.md +1 -1
  10. package/TAB1.md +2 -2
  11. package/TAB2.md +9 -5
  12. package/TROUBLESHOOT.md +10 -1
  13. package/UTILITIES.md +473 -0
  14. package/adapter.js +5 -5
  15. package/adapterBase.js +52 -16
  16. package/package.json +24 -28
  17. package/pronghorn.json +17 -15
  18. package/propertiesSchema.json +68 -7
  19. package/report/adapterInfo.json +7 -7
  20. package/report/auto-adapter-openapi.json +3753 -0
  21. package/report/updateReport1748551884239.json +120 -0
  22. package/sampleProperties.json +4 -0
  23. package/test/integration/adapterTestBasicGet.js +88 -54
  24. package/test/integration/adapterTestConnectivity.js +15 -16
  25. package/test/integration/adapterTestIntegration.js +1 -38
  26. package/test/unit/adapterBaseTestUnit.js +641 -39
  27. package/test/unit/adapterTestUnit.js +17 -54
  28. package/utils/adapterInfo.js +114 -164
  29. package/utils/argParser.js +44 -0
  30. package/utils/checkMigrate.js +77 -38
  31. package/utils/entitiesToDB.js +53 -42
  32. package/utils/logger.js +26 -0
  33. package/utils/modify.js +56 -55
  34. package/utils/mongoDbConnection.js +79 -0
  35. package/utils/mongoUtils.js +162 -0
  36. package/utils/taskMover.js +31 -32
  37. package/utils/tbScript.js +36 -172
  38. package/utils/tbUtils.js +84 -226
  39. package/utils/troubleshootingAdapter.js +68 -84
  40. package/utils/updateAdapterConfig.js +158 -0
  41. package/utils/addAuth.js +0 -94
  42. package/utils/artifactize.js +0 -146
  43. package/utils/basicGet.js +0 -50
  44. package/utils/packModificationScript.js +0 -35
  45. package/utils/patches2bundledDeps.js +0 -90
@@ -0,0 +1,3753 @@
1
+ {
2
+ "openapi": "3.1.0",
3
+ "info": {
4
+ "title": "",
5
+ "version": "1.0.0"
6
+ },
7
+ "paths": {
8
+ "/accounts/{aname}": {
9
+ "get": {
10
+ "tags": [
11
+ "Accounts"
12
+ ],
13
+ "operationId": "getAccountUsingGET",
14
+ "description": "The parameters and request body are for method: getAccountUsingGET. Same endpoint also used in methods:",
15
+ "responses": {
16
+ "200": {
17
+ "description": "Successful operation",
18
+ "content": {
19
+ "application/json": {
20
+ "schema": {
21
+ "title": "result",
22
+ "type": "object"
23
+ }
24
+ }
25
+ }
26
+ }
27
+ },
28
+ "parameters": [
29
+ {
30
+ "name": "aname",
31
+ "in": "path",
32
+ "required": true,
33
+ "schema": {
34
+ "title": "aname",
35
+ "type": "string"
36
+ }
37
+ }
38
+ ],
39
+ "requestBody": {
40
+ "content": {
41
+ "application/json": {
42
+ "schema": {
43
+ "type": "object"
44
+ },
45
+ "example": {}
46
+ }
47
+ }
48
+ }
49
+ }
50
+ },
51
+ "/accounts/{aname}/statesandservices": {
52
+ "get": {
53
+ "tags": [
54
+ "Accounts"
55
+ ],
56
+ "operationId": "getServicesAndStatesUsingGET",
57
+ "description": "The parameters and request body are for method: getServicesAndStatesUsingGET. Same endpoint also used in methods:",
58
+ "responses": {
59
+ "200": {
60
+ "description": "Successful operation",
61
+ "content": {
62
+ "application/json": {
63
+ "schema": {
64
+ "title": "result",
65
+ "type": "object"
66
+ }
67
+ }
68
+ }
69
+ }
70
+ },
71
+ "parameters": [
72
+ {
73
+ "name": "aname",
74
+ "in": "path",
75
+ "required": true,
76
+ "schema": {
77
+ "title": "aname",
78
+ "type": "string"
79
+ }
80
+ }
81
+ ],
82
+ "requestBody": {
83
+ "content": {
84
+ "application/json": {
85
+ "schema": {
86
+ "type": "object"
87
+ },
88
+ "example": {}
89
+ }
90
+ }
91
+ }
92
+ }
93
+ },
94
+ "/leads/{aname}": {
95
+ "get": {
96
+ "tags": [
97
+ "Accounts"
98
+ ],
99
+ "operationId": "getListUsingGET1",
100
+ "description": "The parameters and request body are for method: getListUsingGET1. Same endpoint also used in methods:",
101
+ "responses": {
102
+ "200": {
103
+ "description": "Successful operation",
104
+ "content": {
105
+ "application/json": {
106
+ "schema": {
107
+ "title": "result",
108
+ "type": "object"
109
+ }
110
+ }
111
+ }
112
+ }
113
+ },
114
+ "parameters": [
115
+ {
116
+ "name": "aname",
117
+ "in": "path",
118
+ "required": true,
119
+ "schema": {
120
+ "title": "aname",
121
+ "type": "string"
122
+ }
123
+ },
124
+ {
125
+ "name": "next",
126
+ "in": "query",
127
+ "required": true,
128
+ "schema": {
129
+ "type": "string"
130
+ }
131
+ }
132
+ ],
133
+ "requestBody": {
134
+ "content": {
135
+ "application/json": {
136
+ "schema": {
137
+ "type": "object"
138
+ },
139
+ "example": {}
140
+ }
141
+ }
142
+ }
143
+ }
144
+ },
145
+ "/accounts/{aname}/requests/{requestId}/status": {
146
+ "get": {
147
+ "tags": [
148
+ "Requests"
149
+ ],
150
+ "operationId": "getRequestStatusUsingGET",
151
+ "description": "The parameters and request body are for method: getRequestStatusUsingGET. Same endpoint also used in methods:",
152
+ "responses": {
153
+ "200": {
154
+ "description": "Successful operation",
155
+ "content": {
156
+ "application/json": {
157
+ "schema": {
158
+ "title": "result",
159
+ "type": "object"
160
+ }
161
+ }
162
+ }
163
+ }
164
+ },
165
+ "parameters": [
166
+ {
167
+ "name": "aname",
168
+ "in": "path",
169
+ "required": true,
170
+ "schema": {
171
+ "title": "aname",
172
+ "type": "string"
173
+ }
174
+ },
175
+ {
176
+ "name": "requestId",
177
+ "in": "path",
178
+ "required": true,
179
+ "schema": {
180
+ "title": "requestId",
181
+ "type": "string"
182
+ }
183
+ }
184
+ ],
185
+ "requestBody": {
186
+ "content": {
187
+ "application/json": {
188
+ "schema": {
189
+ "type": "object"
190
+ },
191
+ "example": {}
192
+ }
193
+ }
194
+ }
195
+ }
196
+ },
197
+ "/callbacks/{aname}": {
198
+ "get": {
199
+ "tags": [
200
+ "Callbacks"
201
+ ],
202
+ "operationId": "listCallbacksUsingGET",
203
+ "description": "The parameters and request body are for method: listCallbacksUsingGET. Same endpoint also used in methods:",
204
+ "responses": {
205
+ "200": {
206
+ "description": "Successful operation",
207
+ "content": {
208
+ "application/json": {
209
+ "schema": {
210
+ "type": "array",
211
+ "items": {
212
+ "type": "object",
213
+ "properties": {
214
+ "accountName": {
215
+ "type": "string"
216
+ },
217
+ "password": {
218
+ "type": "string"
219
+ },
220
+ "serviceName": {
221
+ "type": "string"
222
+ },
223
+ "url": {
224
+ "type": "string"
225
+ },
226
+ "username": {
227
+ "type": "string"
228
+ }
229
+ }
230
+ }
231
+ },
232
+ "example": [
233
+ {
234
+ "accountName": "string",
235
+ "password": "string",
236
+ "serviceName": "string",
237
+ "url": "string",
238
+ "username": "string"
239
+ },
240
+ {
241
+ "accountName": "string",
242
+ "password": "string",
243
+ "serviceName": "string",
244
+ "url": "string",
245
+ "username": "string"
246
+ },
247
+ {
248
+ "accountName": "string",
249
+ "password": "string",
250
+ "serviceName": "string",
251
+ "url": "string",
252
+ "username": "string"
253
+ }
254
+ ]
255
+ }
256
+ }
257
+ }
258
+ },
259
+ "parameters": [
260
+ {
261
+ "name": "aname",
262
+ "in": "path",
263
+ "required": true,
264
+ "schema": {
265
+ "title": "aname",
266
+ "type": "string"
267
+ }
268
+ }
269
+ ],
270
+ "requestBody": {
271
+ "content": {
272
+ "application/json": {
273
+ "schema": {
274
+ "type": "object"
275
+ },
276
+ "example": {}
277
+ }
278
+ }
279
+ }
280
+ },
281
+ "post": {
282
+ "tags": [
283
+ "Callbacks"
284
+ ],
285
+ "operationId": "registerCallbackUsingPOST",
286
+ "description": "The parameters and request body are for method: registerCallbackUsingPOST. Same endpoint also used in methods:",
287
+ "responses": {
288
+ "200": {
289
+ "description": "Successful operation",
290
+ "content": {
291
+ "application/json": {
292
+ "schema": {
293
+ "title": "result",
294
+ "type": "object"
295
+ }
296
+ }
297
+ }
298
+ }
299
+ },
300
+ "parameters": [
301
+ {
302
+ "name": "aname",
303
+ "in": "path",
304
+ "required": true,
305
+ "schema": {
306
+ "title": "aname",
307
+ "type": "string"
308
+ }
309
+ }
310
+ ],
311
+ "requestBody": {
312
+ "description": "indeterminate body object",
313
+ "content": {
314
+ "application/json": {
315
+ "schema": {
316
+ "type": "object"
317
+ }
318
+ }
319
+ }
320
+ }
321
+ }
322
+ },
323
+ "/callbacks/{aname}/name/{sname}": {
324
+ "delete": {
325
+ "tags": [
326
+ "Callbacks"
327
+ ],
328
+ "operationId": "unregisterCallbackUsingDELETE",
329
+ "description": "The parameters and request body are for method: unregisterCallbackUsingDELETE. Same endpoint also used in methods:",
330
+ "responses": {
331
+ "200": {
332
+ "description": "Successful operation",
333
+ "content": {
334
+ "application/json": {
335
+ "schema": {
336
+ "title": "result",
337
+ "type": "object"
338
+ }
339
+ }
340
+ }
341
+ }
342
+ },
343
+ "parameters": [
344
+ {
345
+ "name": "aname",
346
+ "in": "path",
347
+ "required": true,
348
+ "schema": {
349
+ "title": "aname",
350
+ "type": "string"
351
+ }
352
+ },
353
+ {
354
+ "name": "sname",
355
+ "in": "path",
356
+ "required": true,
357
+ "schema": {
358
+ "title": "sname",
359
+ "type": "string"
360
+ }
361
+ }
362
+ ],
363
+ "requestBody": {
364
+ "content": {
365
+ "application/json": {
366
+ "schema": {
367
+ "type": "object"
368
+ },
369
+ "example": {}
370
+ }
371
+ }
372
+ }
373
+ }
374
+ },
375
+ "/devices/actions/activate": {
376
+ "post": {
377
+ "tags": [
378
+ "Devices"
379
+ ],
380
+ "operationId": "activeUsingPOST",
381
+ "description": "The parameters and request body are for method: activeUsingPOST. Same endpoint also used in methods:",
382
+ "responses": {
383
+ "200": {
384
+ "description": "Successful operation",
385
+ "content": {
386
+ "application/json": {
387
+ "schema": {
388
+ "title": "result",
389
+ "type": "object"
390
+ }
391
+ }
392
+ }
393
+ }
394
+ },
395
+ "requestBody": {
396
+ "description": "indeterminate body object",
397
+ "content": {
398
+ "application/json": {
399
+ "schema": {
400
+ "type": "object"
401
+ }
402
+ }
403
+ }
404
+ }
405
+ }
406
+ },
407
+ "/devices/actions/add": {
408
+ "post": {
409
+ "tags": [
410
+ "Devices"
411
+ ],
412
+ "operationId": "addUsingPOST",
413
+ "description": "The parameters and request body are for method: addUsingPOST. Same endpoint also used in methods:",
414
+ "responses": {
415
+ "200": {
416
+ "description": "Successful operation",
417
+ "content": {
418
+ "application/json": {
419
+ "schema": {
420
+ "type": "array",
421
+ "items": {
422
+ "type": "object",
423
+ "properties": {
424
+ "deviceIds": {
425
+ "type": "array",
426
+ "items": {
427
+ "type": "object",
428
+ "properties": {
429
+ "id": {
430
+ "type": "string"
431
+ },
432
+ "kind": {
433
+ "type": "string"
434
+ }
435
+ }
436
+ }
437
+ },
438
+ "response": {
439
+ "type": "string"
440
+ }
441
+ }
442
+ }
443
+ },
444
+ "example": [
445
+ {
446
+ "deviceIds": [
447
+ {
448
+ "id": "string",
449
+ "kind": "string"
450
+ },
451
+ {
452
+ "id": "string",
453
+ "kind": "string"
454
+ },
455
+ {
456
+ "id": "string",
457
+ "kind": "string"
458
+ },
459
+ {
460
+ "id": "string",
461
+ "kind": "string"
462
+ }
463
+ ],
464
+ "response": "string"
465
+ }
466
+ ]
467
+ }
468
+ }
469
+ }
470
+ },
471
+ "requestBody": {
472
+ "description": "indeterminate body object",
473
+ "content": {
474
+ "application/json": {
475
+ "schema": {
476
+ "type": "object"
477
+ }
478
+ }
479
+ }
480
+ }
481
+ }
482
+ },
483
+ "/devices/actions/contactinfo": {
484
+ "put": {
485
+ "tags": [
486
+ "Devices"
487
+ ],
488
+ "operationId": "updateContactInfoUsingPUT",
489
+ "description": "The parameters and request body are for method: updateContactInfoUsingPUT. Same endpoint also used in methods:",
490
+ "responses": {
491
+ "200": {
492
+ "description": "Successful operation",
493
+ "content": {
494
+ "application/json": {
495
+ "schema": {
496
+ "title": "result",
497
+ "type": "object"
498
+ }
499
+ }
500
+ }
501
+ }
502
+ },
503
+ "requestBody": {
504
+ "description": "indeterminate body object",
505
+ "content": {
506
+ "application/json": {
507
+ "schema": {
508
+ "type": "object"
509
+ }
510
+ }
511
+ }
512
+ }
513
+ }
514
+ },
515
+ "/devices/actions/customFields": {
516
+ "put": {
517
+ "tags": [
518
+ "Devices"
519
+ ],
520
+ "operationId": "updateCustomFieldsUsingPUT",
521
+ "description": "The parameters and request body are for method: updateCustomFieldsUsingPUT. Same endpoint also used in methods:",
522
+ "responses": {
523
+ "200": {
524
+ "description": "Successful operation",
525
+ "content": {
526
+ "application/json": {
527
+ "schema": {
528
+ "title": "result",
529
+ "type": "object"
530
+ }
531
+ }
532
+ }
533
+ }
534
+ },
535
+ "requestBody": {
536
+ "description": "indeterminate body object",
537
+ "content": {
538
+ "application/json": {
539
+ "schema": {
540
+ "type": "object"
541
+ }
542
+ }
543
+ }
544
+ }
545
+ }
546
+ },
547
+ "/devices/actions/deactivate": {
548
+ "post": {
549
+ "tags": [
550
+ "Devices"
551
+ ],
552
+ "operationId": "deactiveUsingPOST",
553
+ "description": "The parameters and request body are for method: deactiveUsingPOST. Same endpoint also used in methods:",
554
+ "responses": {
555
+ "200": {
556
+ "description": "Successful operation",
557
+ "content": {
558
+ "application/json": {
559
+ "schema": {
560
+ "title": "result",
561
+ "type": "object"
562
+ }
563
+ }
564
+ }
565
+ }
566
+ },
567
+ "requestBody": {
568
+ "description": "indeterminate body object",
569
+ "content": {
570
+ "application/json": {
571
+ "schema": {
572
+ "type": "object"
573
+ }
574
+ }
575
+ }
576
+ }
577
+ }
578
+ },
579
+ "/devices/actions/delete": {
580
+ "post": {
581
+ "tags": [
582
+ "Devices"
583
+ ],
584
+ "operationId": "deleteUsingPOST",
585
+ "description": "The parameters and request body are for method: deleteUsingPOST. Same endpoint also used in methods:",
586
+ "responses": {
587
+ "200": {
588
+ "description": "Successful operation",
589
+ "content": {
590
+ "application/json": {
591
+ "schema": {
592
+ "type": "array",
593
+ "items": {
594
+ "type": "object",
595
+ "properties": {
596
+ "deviceIds": {
597
+ "type": "array",
598
+ "items": {
599
+ "type": "object",
600
+ "properties": {
601
+ "id": {
602
+ "type": "string"
603
+ },
604
+ "kind": {
605
+ "type": "string"
606
+ }
607
+ }
608
+ }
609
+ },
610
+ "status": {
611
+ "type": "string"
612
+ },
613
+ "message": {
614
+ "type": "string"
615
+ }
616
+ }
617
+ }
618
+ },
619
+ "example": [
620
+ {
621
+ "deviceIds": [
622
+ {
623
+ "id": "string",
624
+ "kind": "string"
625
+ },
626
+ {
627
+ "id": "string",
628
+ "kind": "string"
629
+ },
630
+ {
631
+ "id": "string",
632
+ "kind": "string"
633
+ },
634
+ {
635
+ "id": "string",
636
+ "kind": "string"
637
+ },
638
+ {
639
+ "id": "string",
640
+ "kind": "string"
641
+ },
642
+ {
643
+ "id": "string",
644
+ "kind": "string"
645
+ }
646
+ ],
647
+ "status": "string",
648
+ "message": "string"
649
+ }
650
+ ]
651
+ }
652
+ }
653
+ }
654
+ },
655
+ "requestBody": {
656
+ "description": "indeterminate body object",
657
+ "content": {
658
+ "application/json": {
659
+ "schema": {
660
+ "type": "object"
661
+ }
662
+ }
663
+ }
664
+ }
665
+ }
666
+ },
667
+ "/devices/actions/list": {
668
+ "post": {
669
+ "tags": [
670
+ "Devices"
671
+ ],
672
+ "operationId": "listUsingPOST",
673
+ "description": "The parameters and request body are for method: listUsingPOST. Same endpoint also used in methods:",
674
+ "responses": {
675
+ "200": {
676
+ "description": "Successful operation",
677
+ "content": {
678
+ "application/json": {
679
+ "schema": {
680
+ "title": "result",
681
+ "type": "object"
682
+ }
683
+ }
684
+ }
685
+ }
686
+ },
687
+ "requestBody": {
688
+ "description": "indeterminate body object",
689
+ "content": {
690
+ "application/json": {
691
+ "schema": {
692
+ "type": "object"
693
+ }
694
+ }
695
+ }
696
+ }
697
+ }
698
+ },
699
+ "/devices/actions/list/imeiiccidmismatch": {
700
+ "post": {
701
+ "tags": [
702
+ "Devices"
703
+ ],
704
+ "operationId": "imeiIccidMismatchListUsingPOST",
705
+ "description": "The parameters and request body are for method: imeiIccidMismatchListUsingPOST. Same endpoint also used in methods:",
706
+ "responses": {
707
+ "200": {
708
+ "description": "Successful operation",
709
+ "content": {
710
+ "application/json": {
711
+ "schema": {
712
+ "title": "result",
713
+ "type": "object"
714
+ }
715
+ }
716
+ }
717
+ }
718
+ },
719
+ "requestBody": {
720
+ "description": "indeterminate body object",
721
+ "content": {
722
+ "application/json": {
723
+ "schema": {
724
+ "type": "object"
725
+ }
726
+ }
727
+ }
728
+ }
729
+ }
730
+ },
731
+ "/devices/actions/move": {
732
+ "put": {
733
+ "tags": [
734
+ "Devices"
735
+ ],
736
+ "operationId": "moveUsingPut",
737
+ "description": "The parameters and request body are for method: moveUsingPut. Same endpoint also used in methods:",
738
+ "responses": {
739
+ "200": {
740
+ "description": "Successful operation",
741
+ "content": {
742
+ "application/json": {
743
+ "schema": {
744
+ "title": "result",
745
+ "type": "object"
746
+ }
747
+ }
748
+ }
749
+ }
750
+ },
751
+ "requestBody": {
752
+ "description": "indeterminate body object",
753
+ "content": {
754
+ "application/json": {
755
+ "schema": {
756
+ "type": "object"
757
+ }
758
+ }
759
+ }
760
+ }
761
+ }
762
+ },
763
+ "/devices/actions/gotostate": {
764
+ "put": {
765
+ "tags": [
766
+ "Devices"
767
+ ],
768
+ "operationId": "gotostateUsingPut",
769
+ "description": "The parameters and request body are for method: gotostateUsingPut. Same endpoint also used in methods:",
770
+ "responses": {
771
+ "200": {
772
+ "description": "Successful operation",
773
+ "content": {
774
+ "application/json": {
775
+ "schema": {
776
+ "title": "result",
777
+ "type": "object"
778
+ }
779
+ }
780
+ }
781
+ }
782
+ },
783
+ "requestBody": {
784
+ "description": "indeterminate body object",
785
+ "content": {
786
+ "application/json": {
787
+ "schema": {
788
+ "type": "object"
789
+ }
790
+ }
791
+ }
792
+ }
793
+ }
794
+ },
795
+ "/devices/actions/plan": {
796
+ "put": {
797
+ "tags": [
798
+ "Devices"
799
+ ],
800
+ "operationId": "updateServicePlanUsingPUT",
801
+ "description": "The parameters and request body are for method: updateServicePlanUsingPUT. Same endpoint also used in methods:",
802
+ "responses": {
803
+ "200": {
804
+ "description": "Successful operation",
805
+ "content": {
806
+ "application/json": {
807
+ "schema": {
808
+ "title": "result",
809
+ "type": "object"
810
+ }
811
+ }
812
+ }
813
+ }
814
+ },
815
+ "requestBody": {
816
+ "description": "indeterminate body object",
817
+ "content": {
818
+ "application/json": {
819
+ "schema": {
820
+ "type": "object"
821
+ }
822
+ }
823
+ }
824
+ }
825
+ }
826
+ },
827
+ "/devices/actions/suspend": {
828
+ "post": {
829
+ "tags": [
830
+ "Devices"
831
+ ],
832
+ "operationId": "suspendUsingPOST",
833
+ "description": "The parameters and request body are for method: suspendUsingPOST. Same endpoint also used in methods:",
834
+ "responses": {
835
+ "200": {
836
+ "description": "Successful operation",
837
+ "content": {
838
+ "application/json": {
839
+ "schema": {
840
+ "title": "result",
841
+ "type": "object"
842
+ }
843
+ }
844
+ }
845
+ }
846
+ },
847
+ "requestBody": {
848
+ "description": "indeterminate body object",
849
+ "content": {
850
+ "application/json": {
851
+ "schema": {
852
+ "type": "object"
853
+ }
854
+ }
855
+ }
856
+ }
857
+ }
858
+ },
859
+ "/devices/actions/restore": {
860
+ "post": {
861
+ "tags": [
862
+ "Devices"
863
+ ],
864
+ "operationId": "restoreUsingPOST",
865
+ "description": "The parameters and request body are for method: restoreUsingPOST. Same endpoint also used in methods:",
866
+ "responses": {
867
+ "200": {
868
+ "description": "Successful operation",
869
+ "content": {
870
+ "application/json": {
871
+ "schema": {
872
+ "title": "result",
873
+ "type": "object"
874
+ }
875
+ }
876
+ }
877
+ }
878
+ },
879
+ "requestBody": {
880
+ "description": "indeterminate body object",
881
+ "content": {
882
+ "application/json": {
883
+ "schema": {
884
+ "type": "object"
885
+ }
886
+ }
887
+ }
888
+ }
889
+ }
890
+ },
891
+ "/devices/availability/actions/list": {
892
+ "post": {
893
+ "tags": [
894
+ "Devices"
895
+ ],
896
+ "operationId": "deviceAvailabilityListUsingPOST",
897
+ "description": "The parameters and request body are for method: deviceAvailabilityListUsingPOST. Same endpoint also used in methods:",
898
+ "responses": {
899
+ "200": {
900
+ "description": "Successful operation",
901
+ "content": {
902
+ "application/json": {
903
+ "schema": {
904
+ "title": "result",
905
+ "type": "object"
906
+ }
907
+ }
908
+ }
909
+ }
910
+ },
911
+ "requestBody": {
912
+ "description": "indeterminate body object",
913
+ "content": {
914
+ "application/json": {
915
+ "schema": {
916
+ "type": "object"
917
+ }
918
+ }
919
+ }
920
+ }
921
+ }
922
+ },
923
+ "/devices/connections/actions/listHistory": {
924
+ "post": {
925
+ "tags": [
926
+ "Devices"
927
+ ],
928
+ "operationId": "connectionListHistoryUsingPOST",
929
+ "description": "The parameters and request body are for method: connectionListHistoryUsingPOST. Same endpoint also used in methods:",
930
+ "responses": {
931
+ "200": {
932
+ "description": "Successful operation",
933
+ "content": {
934
+ "application/json": {
935
+ "schema": {
936
+ "type": "array",
937
+ "items": {
938
+ "type": "object",
939
+ "properties": {
940
+ "connectionHistory": {
941
+ "type": "array",
942
+ "items": {
943
+ "type": "object",
944
+ "properties": {
945
+ "connectionEventAttributes": {
946
+ "type": "array",
947
+ "items": {
948
+ "type": "object",
949
+ "properties": {
950
+ "key": {
951
+ "type": "string"
952
+ },
953
+ "value": {
954
+ "type": "string"
955
+ }
956
+ }
957
+ }
958
+ },
959
+ "extendedAttributes": {
960
+ "type": "array",
961
+ "items": {
962
+ "type": "object",
963
+ "properties": {
964
+ "key": {
965
+ "type": "string"
966
+ },
967
+ "value": {
968
+ "type": "string"
969
+ }
970
+ }
971
+ }
972
+ },
973
+ "occurredAt": {
974
+ "type": "string"
975
+ }
976
+ }
977
+ }
978
+ },
979
+ "hasMoreData": {
980
+ "type": "boolean"
981
+ }
982
+ }
983
+ }
984
+ },
985
+ "example": [
986
+ {
987
+ "connectionHistory": [
988
+ {
989
+ "connectionEventAttributes": [
990
+ {
991
+ "key": "string",
992
+ "value": "string"
993
+ },
994
+ {
995
+ "key": "string",
996
+ "value": "string"
997
+ },
998
+ {
999
+ "key": "string",
1000
+ "value": "string"
1001
+ },
1002
+ {
1003
+ "key": "string",
1004
+ "value": "string"
1005
+ },
1006
+ {
1007
+ "key": "string",
1008
+ "value": "string"
1009
+ }
1010
+ ],
1011
+ "extendedAttributes": [
1012
+ {
1013
+ "key": "string",
1014
+ "value": "string"
1015
+ },
1016
+ {
1017
+ "key": "string",
1018
+ "value": "string"
1019
+ },
1020
+ {
1021
+ "key": "string",
1022
+ "value": "string"
1023
+ },
1024
+ {
1025
+ "key": "string",
1026
+ "value": "string"
1027
+ }
1028
+ ],
1029
+ "occurredAt": "string"
1030
+ },
1031
+ {
1032
+ "connectionEventAttributes": [
1033
+ {
1034
+ "key": "string",
1035
+ "value": "string"
1036
+ },
1037
+ {
1038
+ "key": "string",
1039
+ "value": "string"
1040
+ }
1041
+ ],
1042
+ "extendedAttributes": [
1043
+ {
1044
+ "key": "string",
1045
+ "value": "string"
1046
+ },
1047
+ {
1048
+ "key": "string",
1049
+ "value": "string"
1050
+ },
1051
+ {
1052
+ "key": "string",
1053
+ "value": "string"
1054
+ },
1055
+ {
1056
+ "key": "string",
1057
+ "value": "string"
1058
+ },
1059
+ {
1060
+ "key": "string",
1061
+ "value": "string"
1062
+ },
1063
+ {
1064
+ "key": "string",
1065
+ "value": "string"
1066
+ },
1067
+ {
1068
+ "key": "string",
1069
+ "value": "string"
1070
+ },
1071
+ {
1072
+ "key": "string",
1073
+ "value": "string"
1074
+ },
1075
+ {
1076
+ "key": "string",
1077
+ "value": "string"
1078
+ },
1079
+ {
1080
+ "key": "string",
1081
+ "value": "string"
1082
+ }
1083
+ ],
1084
+ "occurredAt": "string"
1085
+ },
1086
+ {
1087
+ "connectionEventAttributes": [
1088
+ {
1089
+ "key": "string",
1090
+ "value": "string"
1091
+ }
1092
+ ],
1093
+ "extendedAttributes": [
1094
+ {
1095
+ "key": "string",
1096
+ "value": "string"
1097
+ }
1098
+ ],
1099
+ "occurredAt": "string"
1100
+ },
1101
+ {
1102
+ "connectionEventAttributes": [
1103
+ {
1104
+ "key": "string",
1105
+ "value": "string"
1106
+ },
1107
+ {
1108
+ "key": "string",
1109
+ "value": "string"
1110
+ },
1111
+ {
1112
+ "key": "string",
1113
+ "value": "string"
1114
+ },
1115
+ {
1116
+ "key": "string",
1117
+ "value": "string"
1118
+ },
1119
+ {
1120
+ "key": "string",
1121
+ "value": "string"
1122
+ },
1123
+ {
1124
+ "key": "string",
1125
+ "value": "string"
1126
+ },
1127
+ {
1128
+ "key": "string",
1129
+ "value": "string"
1130
+ },
1131
+ {
1132
+ "key": "string",
1133
+ "value": "string"
1134
+ },
1135
+ {
1136
+ "key": "string",
1137
+ "value": "string"
1138
+ }
1139
+ ],
1140
+ "extendedAttributes": [
1141
+ {
1142
+ "key": "string",
1143
+ "value": "string"
1144
+ },
1145
+ {
1146
+ "key": "string",
1147
+ "value": "string"
1148
+ }
1149
+ ],
1150
+ "occurredAt": "string"
1151
+ },
1152
+ {
1153
+ "connectionEventAttributes": [
1154
+ {
1155
+ "key": "string",
1156
+ "value": "string"
1157
+ },
1158
+ {
1159
+ "key": "string",
1160
+ "value": "string"
1161
+ },
1162
+ {
1163
+ "key": "string",
1164
+ "value": "string"
1165
+ },
1166
+ {
1167
+ "key": "string",
1168
+ "value": "string"
1169
+ },
1170
+ {
1171
+ "key": "string",
1172
+ "value": "string"
1173
+ }
1174
+ ],
1175
+ "extendedAttributes": [
1176
+ {
1177
+ "key": "string",
1178
+ "value": "string"
1179
+ },
1180
+ {
1181
+ "key": "string",
1182
+ "value": "string"
1183
+ },
1184
+ {
1185
+ "key": "string",
1186
+ "value": "string"
1187
+ },
1188
+ {
1189
+ "key": "string",
1190
+ "value": "string"
1191
+ },
1192
+ {
1193
+ "key": "string",
1194
+ "value": "string"
1195
+ },
1196
+ {
1197
+ "key": "string",
1198
+ "value": "string"
1199
+ },
1200
+ {
1201
+ "key": "string",
1202
+ "value": "string"
1203
+ },
1204
+ {
1205
+ "key": "string",
1206
+ "value": "string"
1207
+ },
1208
+ {
1209
+ "key": "string",
1210
+ "value": "string"
1211
+ }
1212
+ ],
1213
+ "occurredAt": "string"
1214
+ },
1215
+ {
1216
+ "connectionEventAttributes": [
1217
+ {
1218
+ "key": "string",
1219
+ "value": "string"
1220
+ },
1221
+ {
1222
+ "key": "string",
1223
+ "value": "string"
1224
+ },
1225
+ {
1226
+ "key": "string",
1227
+ "value": "string"
1228
+ },
1229
+ {
1230
+ "key": "string",
1231
+ "value": "string"
1232
+ },
1233
+ {
1234
+ "key": "string",
1235
+ "value": "string"
1236
+ },
1237
+ {
1238
+ "key": "string",
1239
+ "value": "string"
1240
+ },
1241
+ {
1242
+ "key": "string",
1243
+ "value": "string"
1244
+ },
1245
+ {
1246
+ "key": "string",
1247
+ "value": "string"
1248
+ },
1249
+ {
1250
+ "key": "string",
1251
+ "value": "string"
1252
+ }
1253
+ ],
1254
+ "extendedAttributes": [
1255
+ {
1256
+ "key": "string",
1257
+ "value": "string"
1258
+ },
1259
+ {
1260
+ "key": "string",
1261
+ "value": "string"
1262
+ }
1263
+ ],
1264
+ "occurredAt": "string"
1265
+ },
1266
+ {
1267
+ "connectionEventAttributes": [
1268
+ {
1269
+ "key": "string",
1270
+ "value": "string"
1271
+ },
1272
+ {
1273
+ "key": "string",
1274
+ "value": "string"
1275
+ },
1276
+ {
1277
+ "key": "string",
1278
+ "value": "string"
1279
+ },
1280
+ {
1281
+ "key": "string",
1282
+ "value": "string"
1283
+ },
1284
+ {
1285
+ "key": "string",
1286
+ "value": "string"
1287
+ },
1288
+ {
1289
+ "key": "string",
1290
+ "value": "string"
1291
+ }
1292
+ ],
1293
+ "extendedAttributes": [
1294
+ {
1295
+ "key": "string",
1296
+ "value": "string"
1297
+ },
1298
+ {
1299
+ "key": "string",
1300
+ "value": "string"
1301
+ },
1302
+ {
1303
+ "key": "string",
1304
+ "value": "string"
1305
+ },
1306
+ {
1307
+ "key": "string",
1308
+ "value": "string"
1309
+ }
1310
+ ],
1311
+ "occurredAt": "string"
1312
+ }
1313
+ ],
1314
+ "hasMoreData": false
1315
+ },
1316
+ {
1317
+ "connectionHistory": [
1318
+ {
1319
+ "connectionEventAttributes": [
1320
+ {
1321
+ "key": "string",
1322
+ "value": "string"
1323
+ }
1324
+ ],
1325
+ "extendedAttributes": [
1326
+ {
1327
+ "key": "string",
1328
+ "value": "string"
1329
+ },
1330
+ {
1331
+ "key": "string",
1332
+ "value": "string"
1333
+ },
1334
+ {
1335
+ "key": "string",
1336
+ "value": "string"
1337
+ },
1338
+ {
1339
+ "key": "string",
1340
+ "value": "string"
1341
+ }
1342
+ ],
1343
+ "occurredAt": "string"
1344
+ },
1345
+ {
1346
+ "connectionEventAttributes": [
1347
+ {
1348
+ "key": "string",
1349
+ "value": "string"
1350
+ },
1351
+ {
1352
+ "key": "string",
1353
+ "value": "string"
1354
+ },
1355
+ {
1356
+ "key": "string",
1357
+ "value": "string"
1358
+ },
1359
+ {
1360
+ "key": "string",
1361
+ "value": "string"
1362
+ },
1363
+ {
1364
+ "key": "string",
1365
+ "value": "string"
1366
+ },
1367
+ {
1368
+ "key": "string",
1369
+ "value": "string"
1370
+ },
1371
+ {
1372
+ "key": "string",
1373
+ "value": "string"
1374
+ },
1375
+ {
1376
+ "key": "string",
1377
+ "value": "string"
1378
+ },
1379
+ {
1380
+ "key": "string",
1381
+ "value": "string"
1382
+ }
1383
+ ],
1384
+ "extendedAttributes": [
1385
+ {
1386
+ "key": "string",
1387
+ "value": "string"
1388
+ },
1389
+ {
1390
+ "key": "string",
1391
+ "value": "string"
1392
+ },
1393
+ {
1394
+ "key": "string",
1395
+ "value": "string"
1396
+ },
1397
+ {
1398
+ "key": "string",
1399
+ "value": "string"
1400
+ },
1401
+ {
1402
+ "key": "string",
1403
+ "value": "string"
1404
+ },
1405
+ {
1406
+ "key": "string",
1407
+ "value": "string"
1408
+ },
1409
+ {
1410
+ "key": "string",
1411
+ "value": "string"
1412
+ },
1413
+ {
1414
+ "key": "string",
1415
+ "value": "string"
1416
+ }
1417
+ ],
1418
+ "occurredAt": "string"
1419
+ },
1420
+ {
1421
+ "connectionEventAttributes": [
1422
+ {
1423
+ "key": "string",
1424
+ "value": "string"
1425
+ },
1426
+ {
1427
+ "key": "string",
1428
+ "value": "string"
1429
+ },
1430
+ {
1431
+ "key": "string",
1432
+ "value": "string"
1433
+ },
1434
+ {
1435
+ "key": "string",
1436
+ "value": "string"
1437
+ }
1438
+ ],
1439
+ "extendedAttributes": [
1440
+ {
1441
+ "key": "string",
1442
+ "value": "string"
1443
+ },
1444
+ {
1445
+ "key": "string",
1446
+ "value": "string"
1447
+ },
1448
+ {
1449
+ "key": "string",
1450
+ "value": "string"
1451
+ },
1452
+ {
1453
+ "key": "string",
1454
+ "value": "string"
1455
+ },
1456
+ {
1457
+ "key": "string",
1458
+ "value": "string"
1459
+ },
1460
+ {
1461
+ "key": "string",
1462
+ "value": "string"
1463
+ },
1464
+ {
1465
+ "key": "string",
1466
+ "value": "string"
1467
+ },
1468
+ {
1469
+ "key": "string",
1470
+ "value": "string"
1471
+ },
1472
+ {
1473
+ "key": "string",
1474
+ "value": "string"
1475
+ },
1476
+ {
1477
+ "key": "string",
1478
+ "value": "string"
1479
+ }
1480
+ ],
1481
+ "occurredAt": "string"
1482
+ },
1483
+ {
1484
+ "connectionEventAttributes": [
1485
+ {
1486
+ "key": "string",
1487
+ "value": "string"
1488
+ },
1489
+ {
1490
+ "key": "string",
1491
+ "value": "string"
1492
+ },
1493
+ {
1494
+ "key": "string",
1495
+ "value": "string"
1496
+ },
1497
+ {
1498
+ "key": "string",
1499
+ "value": "string"
1500
+ }
1501
+ ],
1502
+ "extendedAttributes": [
1503
+ {
1504
+ "key": "string",
1505
+ "value": "string"
1506
+ },
1507
+ {
1508
+ "key": "string",
1509
+ "value": "string"
1510
+ },
1511
+ {
1512
+ "key": "string",
1513
+ "value": "string"
1514
+ },
1515
+ {
1516
+ "key": "string",
1517
+ "value": "string"
1518
+ },
1519
+ {
1520
+ "key": "string",
1521
+ "value": "string"
1522
+ },
1523
+ {
1524
+ "key": "string",
1525
+ "value": "string"
1526
+ }
1527
+ ],
1528
+ "occurredAt": "string"
1529
+ },
1530
+ {
1531
+ "connectionEventAttributes": [
1532
+ {
1533
+ "key": "string",
1534
+ "value": "string"
1535
+ },
1536
+ {
1537
+ "key": "string",
1538
+ "value": "string"
1539
+ },
1540
+ {
1541
+ "key": "string",
1542
+ "value": "string"
1543
+ },
1544
+ {
1545
+ "key": "string",
1546
+ "value": "string"
1547
+ },
1548
+ {
1549
+ "key": "string",
1550
+ "value": "string"
1551
+ },
1552
+ {
1553
+ "key": "string",
1554
+ "value": "string"
1555
+ },
1556
+ {
1557
+ "key": "string",
1558
+ "value": "string"
1559
+ }
1560
+ ],
1561
+ "extendedAttributes": [
1562
+ {
1563
+ "key": "string",
1564
+ "value": "string"
1565
+ },
1566
+ {
1567
+ "key": "string",
1568
+ "value": "string"
1569
+ },
1570
+ {
1571
+ "key": "string",
1572
+ "value": "string"
1573
+ },
1574
+ {
1575
+ "key": "string",
1576
+ "value": "string"
1577
+ }
1578
+ ],
1579
+ "occurredAt": "string"
1580
+ },
1581
+ {
1582
+ "connectionEventAttributes": [
1583
+ {
1584
+ "key": "string",
1585
+ "value": "string"
1586
+ },
1587
+ {
1588
+ "key": "string",
1589
+ "value": "string"
1590
+ },
1591
+ {
1592
+ "key": "string",
1593
+ "value": "string"
1594
+ },
1595
+ {
1596
+ "key": "string",
1597
+ "value": "string"
1598
+ },
1599
+ {
1600
+ "key": "string",
1601
+ "value": "string"
1602
+ },
1603
+ {
1604
+ "key": "string",
1605
+ "value": "string"
1606
+ },
1607
+ {
1608
+ "key": "string",
1609
+ "value": "string"
1610
+ },
1611
+ {
1612
+ "key": "string",
1613
+ "value": "string"
1614
+ },
1615
+ {
1616
+ "key": "string",
1617
+ "value": "string"
1618
+ }
1619
+ ],
1620
+ "extendedAttributes": [
1621
+ {
1622
+ "key": "string",
1623
+ "value": "string"
1624
+ },
1625
+ {
1626
+ "key": "string",
1627
+ "value": "string"
1628
+ },
1629
+ {
1630
+ "key": "string",
1631
+ "value": "string"
1632
+ }
1633
+ ],
1634
+ "occurredAt": "string"
1635
+ },
1636
+ {
1637
+ "connectionEventAttributes": [
1638
+ {
1639
+ "key": "string",
1640
+ "value": "string"
1641
+ },
1642
+ {
1643
+ "key": "string",
1644
+ "value": "string"
1645
+ },
1646
+ {
1647
+ "key": "string",
1648
+ "value": "string"
1649
+ },
1650
+ {
1651
+ "key": "string",
1652
+ "value": "string"
1653
+ },
1654
+ {
1655
+ "key": "string",
1656
+ "value": "string"
1657
+ },
1658
+ {
1659
+ "key": "string",
1660
+ "value": "string"
1661
+ },
1662
+ {
1663
+ "key": "string",
1664
+ "value": "string"
1665
+ }
1666
+ ],
1667
+ "extendedAttributes": [
1668
+ {
1669
+ "key": "string",
1670
+ "value": "string"
1671
+ },
1672
+ {
1673
+ "key": "string",
1674
+ "value": "string"
1675
+ },
1676
+ {
1677
+ "key": "string",
1678
+ "value": "string"
1679
+ },
1680
+ {
1681
+ "key": "string",
1682
+ "value": "string"
1683
+ }
1684
+ ],
1685
+ "occurredAt": "string"
1686
+ }
1687
+ ],
1688
+ "hasMoreData": true
1689
+ },
1690
+ {
1691
+ "connectionHistory": [
1692
+ {
1693
+ "connectionEventAttributes": [
1694
+ {
1695
+ "key": "string",
1696
+ "value": "string"
1697
+ },
1698
+ {
1699
+ "key": "string",
1700
+ "value": "string"
1701
+ },
1702
+ {
1703
+ "key": "string",
1704
+ "value": "string"
1705
+ },
1706
+ {
1707
+ "key": "string",
1708
+ "value": "string"
1709
+ }
1710
+ ],
1711
+ "extendedAttributes": [
1712
+ {
1713
+ "key": "string",
1714
+ "value": "string"
1715
+ },
1716
+ {
1717
+ "key": "string",
1718
+ "value": "string"
1719
+ },
1720
+ {
1721
+ "key": "string",
1722
+ "value": "string"
1723
+ }
1724
+ ],
1725
+ "occurredAt": "string"
1726
+ },
1727
+ {
1728
+ "connectionEventAttributes": [
1729
+ {
1730
+ "key": "string",
1731
+ "value": "string"
1732
+ },
1733
+ {
1734
+ "key": "string",
1735
+ "value": "string"
1736
+ },
1737
+ {
1738
+ "key": "string",
1739
+ "value": "string"
1740
+ },
1741
+ {
1742
+ "key": "string",
1743
+ "value": "string"
1744
+ },
1745
+ {
1746
+ "key": "string",
1747
+ "value": "string"
1748
+ },
1749
+ {
1750
+ "key": "string",
1751
+ "value": "string"
1752
+ },
1753
+ {
1754
+ "key": "string",
1755
+ "value": "string"
1756
+ },
1757
+ {
1758
+ "key": "string",
1759
+ "value": "string"
1760
+ }
1761
+ ],
1762
+ "extendedAttributes": [
1763
+ {
1764
+ "key": "string",
1765
+ "value": "string"
1766
+ },
1767
+ {
1768
+ "key": "string",
1769
+ "value": "string"
1770
+ },
1771
+ {
1772
+ "key": "string",
1773
+ "value": "string"
1774
+ },
1775
+ {
1776
+ "key": "string",
1777
+ "value": "string"
1778
+ },
1779
+ {
1780
+ "key": "string",
1781
+ "value": "string"
1782
+ },
1783
+ {
1784
+ "key": "string",
1785
+ "value": "string"
1786
+ },
1787
+ {
1788
+ "key": "string",
1789
+ "value": "string"
1790
+ },
1791
+ {
1792
+ "key": "string",
1793
+ "value": "string"
1794
+ },
1795
+ {
1796
+ "key": "string",
1797
+ "value": "string"
1798
+ }
1799
+ ],
1800
+ "occurredAt": "string"
1801
+ },
1802
+ {
1803
+ "connectionEventAttributes": [
1804
+ {
1805
+ "key": "string",
1806
+ "value": "string"
1807
+ },
1808
+ {
1809
+ "key": "string",
1810
+ "value": "string"
1811
+ },
1812
+ {
1813
+ "key": "string",
1814
+ "value": "string"
1815
+ },
1816
+ {
1817
+ "key": "string",
1818
+ "value": "string"
1819
+ },
1820
+ {
1821
+ "key": "string",
1822
+ "value": "string"
1823
+ },
1824
+ {
1825
+ "key": "string",
1826
+ "value": "string"
1827
+ },
1828
+ {
1829
+ "key": "string",
1830
+ "value": "string"
1831
+ }
1832
+ ],
1833
+ "extendedAttributes": [
1834
+ {
1835
+ "key": "string",
1836
+ "value": "string"
1837
+ },
1838
+ {
1839
+ "key": "string",
1840
+ "value": "string"
1841
+ },
1842
+ {
1843
+ "key": "string",
1844
+ "value": "string"
1845
+ }
1846
+ ],
1847
+ "occurredAt": "string"
1848
+ }
1849
+ ],
1850
+ "hasMoreData": true
1851
+ }
1852
+ ]
1853
+ }
1854
+ }
1855
+ }
1856
+ },
1857
+ "requestBody": {
1858
+ "description": "indeterminate body object",
1859
+ "content": {
1860
+ "application/json": {
1861
+ "schema": {
1862
+ "type": "object"
1863
+ }
1864
+ }
1865
+ }
1866
+ }
1867
+ }
1868
+ },
1869
+ "/devices/costCenter": {
1870
+ "put": {
1871
+ "tags": [
1872
+ "Devices"
1873
+ ],
1874
+ "operationId": "changeCostCenterUsingPUT",
1875
+ "description": "The parameters and request body are for method: changeCostCenterUsingPUT. Same endpoint also used in methods:",
1876
+ "responses": {
1877
+ "200": {
1878
+ "description": "Successful operation",
1879
+ "content": {
1880
+ "application/json": {
1881
+ "schema": {
1882
+ "title": "result",
1883
+ "type": "object"
1884
+ }
1885
+ }
1886
+ }
1887
+ }
1888
+ },
1889
+ "requestBody": {
1890
+ "description": "indeterminate body object",
1891
+ "content": {
1892
+ "application/json": {
1893
+ "schema": {
1894
+ "type": "object"
1895
+ }
1896
+ }
1897
+ }
1898
+ }
1899
+ }
1900
+ },
1901
+ "/devices/extendeddiagnostics/actions/list": {
1902
+ "post": {
1903
+ "tags": [
1904
+ "Devices"
1905
+ ],
1906
+ "operationId": "getExtendedDiagsUsingPOST",
1907
+ "description": "The parameters and request body are for method: getExtendedDiagsUsingPOST. Same endpoint also used in methods:",
1908
+ "responses": {
1909
+ "200": {
1910
+ "description": "Successful operation",
1911
+ "content": {
1912
+ "application/json": {
1913
+ "schema": {
1914
+ "title": "result",
1915
+ "type": "object"
1916
+ }
1917
+ }
1918
+ }
1919
+ }
1920
+ },
1921
+ "requestBody": {
1922
+ "description": "indeterminate body object",
1923
+ "content": {
1924
+ "application/json": {
1925
+ "schema": {
1926
+ "type": "object"
1927
+ }
1928
+ }
1929
+ }
1930
+ }
1931
+ }
1932
+ },
1933
+ "/devices/history/actions/list": {
1934
+ "post": {
1935
+ "tags": [
1936
+ "Devices"
1937
+ ],
1938
+ "operationId": "provisioningHistoryListUsingPOST",
1939
+ "description": "The parameters and request body are for method: provisioningHistoryListUsingPOST. Same endpoint also used in methods:",
1940
+ "responses": {
1941
+ "200": {
1942
+ "description": "Successful operation",
1943
+ "content": {
1944
+ "application/json": {
1945
+ "schema": {
1946
+ "type": "array",
1947
+ "items": {
1948
+ "type": "object",
1949
+ "properties": {
1950
+ "hasMoreData": {
1951
+ "type": "boolean"
1952
+ },
1953
+ "provisioningHistory": {
1954
+ "type": "array",
1955
+ "items": {
1956
+ "type": "object",
1957
+ "properties": {
1958
+ "occurredAt": {
1959
+ "type": "string"
1960
+ },
1961
+ "status": {
1962
+ "type": "string"
1963
+ },
1964
+ "eventBy": {
1965
+ "type": "string"
1966
+ },
1967
+ "eventType": {
1968
+ "type": "string"
1969
+ },
1970
+ "mdn": {
1971
+ "type": "string"
1972
+ },
1973
+ "msisdn": {
1974
+ "type": "string"
1975
+ },
1976
+ "servicePlan": {
1977
+ "type": "string"
1978
+ },
1979
+ "extendedAttributes": {
1980
+ "type": "array",
1981
+ "items": {
1982
+ "type": "object",
1983
+ "properties": {
1984
+ "key": {
1985
+ "type": "string"
1986
+ },
1987
+ "value": {
1988
+ "type": "string"
1989
+ }
1990
+ }
1991
+ }
1992
+ }
1993
+ }
1994
+ }
1995
+ }
1996
+ }
1997
+ }
1998
+ },
1999
+ "example": [
2000
+ {
2001
+ "hasMoreData": false,
2002
+ "provisioningHistory": [
2003
+ {
2004
+ "occurredAt": "string",
2005
+ "status": "string",
2006
+ "eventBy": "string",
2007
+ "eventType": "string",
2008
+ "mdn": "string",
2009
+ "msisdn": "string",
2010
+ "servicePlan": "string",
2011
+ "extendedAttributes": [
2012
+ {
2013
+ "key": "string",
2014
+ "value": "string"
2015
+ },
2016
+ {
2017
+ "key": "string",
2018
+ "value": "string"
2019
+ }
2020
+ ]
2021
+ },
2022
+ {
2023
+ "occurredAt": "string",
2024
+ "status": "string",
2025
+ "eventBy": "string",
2026
+ "eventType": "string",
2027
+ "mdn": "string",
2028
+ "msisdn": "string",
2029
+ "servicePlan": "string",
2030
+ "extendedAttributes": [
2031
+ {
2032
+ "key": "string",
2033
+ "value": "string"
2034
+ },
2035
+ {
2036
+ "key": "string",
2037
+ "value": "string"
2038
+ },
2039
+ {
2040
+ "key": "string",
2041
+ "value": "string"
2042
+ },
2043
+ {
2044
+ "key": "string",
2045
+ "value": "string"
2046
+ }
2047
+ ]
2048
+ },
2049
+ {
2050
+ "occurredAt": "string",
2051
+ "status": "string",
2052
+ "eventBy": "string",
2053
+ "eventType": "string",
2054
+ "mdn": "string",
2055
+ "msisdn": "string",
2056
+ "servicePlan": "string",
2057
+ "extendedAttributes": [
2058
+ {
2059
+ "key": "string",
2060
+ "value": "string"
2061
+ },
2062
+ {
2063
+ "key": "string",
2064
+ "value": "string"
2065
+ },
2066
+ {
2067
+ "key": "string",
2068
+ "value": "string"
2069
+ },
2070
+ {
2071
+ "key": "string",
2072
+ "value": "string"
2073
+ },
2074
+ {
2075
+ "key": "string",
2076
+ "value": "string"
2077
+ },
2078
+ {
2079
+ "key": "string",
2080
+ "value": "string"
2081
+ },
2082
+ {
2083
+ "key": "string",
2084
+ "value": "string"
2085
+ }
2086
+ ]
2087
+ },
2088
+ {
2089
+ "occurredAt": "string",
2090
+ "status": "string",
2091
+ "eventBy": "string",
2092
+ "eventType": "string",
2093
+ "mdn": "string",
2094
+ "msisdn": "string",
2095
+ "servicePlan": "string",
2096
+ "extendedAttributes": [
2097
+ {
2098
+ "key": "string",
2099
+ "value": "string"
2100
+ },
2101
+ {
2102
+ "key": "string",
2103
+ "value": "string"
2104
+ },
2105
+ {
2106
+ "key": "string",
2107
+ "value": "string"
2108
+ },
2109
+ {
2110
+ "key": "string",
2111
+ "value": "string"
2112
+ },
2113
+ {
2114
+ "key": "string",
2115
+ "value": "string"
2116
+ },
2117
+ {
2118
+ "key": "string",
2119
+ "value": "string"
2120
+ },
2121
+ {
2122
+ "key": "string",
2123
+ "value": "string"
2124
+ },
2125
+ {
2126
+ "key": "string",
2127
+ "value": "string"
2128
+ },
2129
+ {
2130
+ "key": "string",
2131
+ "value": "string"
2132
+ }
2133
+ ]
2134
+ },
2135
+ {
2136
+ "occurredAt": "string",
2137
+ "status": "string",
2138
+ "eventBy": "string",
2139
+ "eventType": "string",
2140
+ "mdn": "string",
2141
+ "msisdn": "string",
2142
+ "servicePlan": "string",
2143
+ "extendedAttributes": [
2144
+ {
2145
+ "key": "string",
2146
+ "value": "string"
2147
+ },
2148
+ {
2149
+ "key": "string",
2150
+ "value": "string"
2151
+ },
2152
+ {
2153
+ "key": "string",
2154
+ "value": "string"
2155
+ },
2156
+ {
2157
+ "key": "string",
2158
+ "value": "string"
2159
+ },
2160
+ {
2161
+ "key": "string",
2162
+ "value": "string"
2163
+ },
2164
+ {
2165
+ "key": "string",
2166
+ "value": "string"
2167
+ },
2168
+ {
2169
+ "key": "string",
2170
+ "value": "string"
2171
+ },
2172
+ {
2173
+ "key": "string",
2174
+ "value": "string"
2175
+ }
2176
+ ]
2177
+ },
2178
+ {
2179
+ "occurredAt": "string",
2180
+ "status": "string",
2181
+ "eventBy": "string",
2182
+ "eventType": "string",
2183
+ "mdn": "string",
2184
+ "msisdn": "string",
2185
+ "servicePlan": "string",
2186
+ "extendedAttributes": [
2187
+ {
2188
+ "key": "string",
2189
+ "value": "string"
2190
+ },
2191
+ {
2192
+ "key": "string",
2193
+ "value": "string"
2194
+ },
2195
+ {
2196
+ "key": "string",
2197
+ "value": "string"
2198
+ },
2199
+ {
2200
+ "key": "string",
2201
+ "value": "string"
2202
+ }
2203
+ ]
2204
+ },
2205
+ {
2206
+ "occurredAt": "string",
2207
+ "status": "string",
2208
+ "eventBy": "string",
2209
+ "eventType": "string",
2210
+ "mdn": "string",
2211
+ "msisdn": "string",
2212
+ "servicePlan": "string",
2213
+ "extendedAttributes": [
2214
+ {
2215
+ "key": "string",
2216
+ "value": "string"
2217
+ },
2218
+ {
2219
+ "key": "string",
2220
+ "value": "string"
2221
+ },
2222
+ {
2223
+ "key": "string",
2224
+ "value": "string"
2225
+ },
2226
+ {
2227
+ "key": "string",
2228
+ "value": "string"
2229
+ }
2230
+ ]
2231
+ },
2232
+ {
2233
+ "occurredAt": "string",
2234
+ "status": "string",
2235
+ "eventBy": "string",
2236
+ "eventType": "string",
2237
+ "mdn": "string",
2238
+ "msisdn": "string",
2239
+ "servicePlan": "string",
2240
+ "extendedAttributes": [
2241
+ {
2242
+ "key": "string",
2243
+ "value": "string"
2244
+ },
2245
+ {
2246
+ "key": "string",
2247
+ "value": "string"
2248
+ },
2249
+ {
2250
+ "key": "string",
2251
+ "value": "string"
2252
+ }
2253
+ ]
2254
+ },
2255
+ {
2256
+ "occurredAt": "string",
2257
+ "status": "string",
2258
+ "eventBy": "string",
2259
+ "eventType": "string",
2260
+ "mdn": "string",
2261
+ "msisdn": "string",
2262
+ "servicePlan": "string",
2263
+ "extendedAttributes": [
2264
+ {
2265
+ "key": "string",
2266
+ "value": "string"
2267
+ },
2268
+ {
2269
+ "key": "string",
2270
+ "value": "string"
2271
+ },
2272
+ {
2273
+ "key": "string",
2274
+ "value": "string"
2275
+ },
2276
+ {
2277
+ "key": "string",
2278
+ "value": "string"
2279
+ },
2280
+ {
2281
+ "key": "string",
2282
+ "value": "string"
2283
+ },
2284
+ {
2285
+ "key": "string",
2286
+ "value": "string"
2287
+ },
2288
+ {
2289
+ "key": "string",
2290
+ "value": "string"
2291
+ },
2292
+ {
2293
+ "key": "string",
2294
+ "value": "string"
2295
+ },
2296
+ {
2297
+ "key": "string",
2298
+ "value": "string"
2299
+ }
2300
+ ]
2301
+ }
2302
+ ]
2303
+ },
2304
+ {
2305
+ "hasMoreData": false,
2306
+ "provisioningHistory": [
2307
+ {
2308
+ "occurredAt": "string",
2309
+ "status": "string",
2310
+ "eventBy": "string",
2311
+ "eventType": "string",
2312
+ "mdn": "string",
2313
+ "msisdn": "string",
2314
+ "servicePlan": "string",
2315
+ "extendedAttributes": [
2316
+ {
2317
+ "key": "string",
2318
+ "value": "string"
2319
+ },
2320
+ {
2321
+ "key": "string",
2322
+ "value": "string"
2323
+ },
2324
+ {
2325
+ "key": "string",
2326
+ "value": "string"
2327
+ },
2328
+ {
2329
+ "key": "string",
2330
+ "value": "string"
2331
+ },
2332
+ {
2333
+ "key": "string",
2334
+ "value": "string"
2335
+ }
2336
+ ]
2337
+ },
2338
+ {
2339
+ "occurredAt": "string",
2340
+ "status": "string",
2341
+ "eventBy": "string",
2342
+ "eventType": "string",
2343
+ "mdn": "string",
2344
+ "msisdn": "string",
2345
+ "servicePlan": "string",
2346
+ "extendedAttributes": [
2347
+ {
2348
+ "key": "string",
2349
+ "value": "string"
2350
+ },
2351
+ {
2352
+ "key": "string",
2353
+ "value": "string"
2354
+ },
2355
+ {
2356
+ "key": "string",
2357
+ "value": "string"
2358
+ },
2359
+ {
2360
+ "key": "string",
2361
+ "value": "string"
2362
+ }
2363
+ ]
2364
+ },
2365
+ {
2366
+ "occurredAt": "string",
2367
+ "status": "string",
2368
+ "eventBy": "string",
2369
+ "eventType": "string",
2370
+ "mdn": "string",
2371
+ "msisdn": "string",
2372
+ "servicePlan": "string",
2373
+ "extendedAttributes": [
2374
+ {
2375
+ "key": "string",
2376
+ "value": "string"
2377
+ },
2378
+ {
2379
+ "key": "string",
2380
+ "value": "string"
2381
+ },
2382
+ {
2383
+ "key": "string",
2384
+ "value": "string"
2385
+ },
2386
+ {
2387
+ "key": "string",
2388
+ "value": "string"
2389
+ },
2390
+ {
2391
+ "key": "string",
2392
+ "value": "string"
2393
+ },
2394
+ {
2395
+ "key": "string",
2396
+ "value": "string"
2397
+ },
2398
+ {
2399
+ "key": "string",
2400
+ "value": "string"
2401
+ },
2402
+ {
2403
+ "key": "string",
2404
+ "value": "string"
2405
+ }
2406
+ ]
2407
+ },
2408
+ {
2409
+ "occurredAt": "string",
2410
+ "status": "string",
2411
+ "eventBy": "string",
2412
+ "eventType": "string",
2413
+ "mdn": "string",
2414
+ "msisdn": "string",
2415
+ "servicePlan": "string",
2416
+ "extendedAttributes": [
2417
+ {
2418
+ "key": "string",
2419
+ "value": "string"
2420
+ }
2421
+ ]
2422
+ }
2423
+ ]
2424
+ }
2425
+ ]
2426
+ }
2427
+ }
2428
+ }
2429
+ },
2430
+ "requestBody": {
2431
+ "description": "indeterminate body object",
2432
+ "content": {
2433
+ "application/json": {
2434
+ "schema": {
2435
+ "type": "object"
2436
+ }
2437
+ }
2438
+ }
2439
+ }
2440
+ }
2441
+ },
2442
+ "/devices/prl/actions/list": {
2443
+ "post": {
2444
+ "tags": [
2445
+ "Devices"
2446
+ ],
2447
+ "operationId": "prlListUsingPOST",
2448
+ "description": "The parameters and request body are for method: prlListUsingPOST. Same endpoint also used in methods:",
2449
+ "responses": {
2450
+ "200": {
2451
+ "description": "Successful operation",
2452
+ "content": {
2453
+ "application/json": {
2454
+ "schema": {
2455
+ "title": "result",
2456
+ "type": "object"
2457
+ }
2458
+ }
2459
+ }
2460
+ }
2461
+ },
2462
+ "requestBody": {
2463
+ "description": "indeterminate body object",
2464
+ "content": {
2465
+ "application/json": {
2466
+ "schema": {
2467
+ "type": "object"
2468
+ }
2469
+ }
2470
+ }
2471
+ }
2472
+ }
2473
+ },
2474
+ "/devices/suspension/status": {
2475
+ "post": {
2476
+ "tags": [
2477
+ "Devices"
2478
+ ],
2479
+ "operationId": "getDeviceSuspensionStatusUsingPOST",
2480
+ "description": "The parameters and request body are for method: getDeviceSuspensionStatusUsingPOST. Same endpoint also used in methods:",
2481
+ "responses": {
2482
+ "200": {
2483
+ "description": "Successful operation",
2484
+ "content": {
2485
+ "application/json": {
2486
+ "schema": {
2487
+ "title": "result",
2488
+ "type": "object"
2489
+ }
2490
+ }
2491
+ }
2492
+ }
2493
+ },
2494
+ "requestBody": {
2495
+ "description": "indeterminate body object",
2496
+ "content": {
2497
+ "application/json": {
2498
+ "schema": {
2499
+ "type": "object"
2500
+ }
2501
+ }
2502
+ }
2503
+ }
2504
+ }
2505
+ },
2506
+ "/devices/usage/actions/list": {
2507
+ "post": {
2508
+ "tags": [
2509
+ "Devices"
2510
+ ],
2511
+ "operationId": "usageListUsingPOST",
2512
+ "description": "The parameters and request body are for method: usageListUsingPOST. Same endpoint also used in methods:",
2513
+ "responses": {
2514
+ "200": {
2515
+ "description": "Successful operation",
2516
+ "content": {
2517
+ "application/json": {
2518
+ "schema": {
2519
+ "type": "array",
2520
+ "items": {
2521
+ "type": "object",
2522
+ "properties": {
2523
+ "hasMoreData": {
2524
+ "type": "boolean"
2525
+ },
2526
+ "usageHistory": {
2527
+ "type": "array",
2528
+ "items": {
2529
+ "type": "object",
2530
+ "properties": {
2531
+ "bytesUsed": {
2532
+ "type": "number"
2533
+ },
2534
+ "extendedAttributes": {
2535
+ "type": "array",
2536
+ "items": {
2537
+ "type": "object",
2538
+ "properties": {
2539
+ "key": {
2540
+ "type": "string"
2541
+ },
2542
+ "value": {
2543
+ "type": "string"
2544
+ }
2545
+ }
2546
+ }
2547
+ },
2548
+ "servicePlan": {
2549
+ "type": "string"
2550
+ },
2551
+ "smsUsed": {
2552
+ "type": "number"
2553
+ },
2554
+ "source": {
2555
+ "type": "string"
2556
+ },
2557
+ "timestamp": {
2558
+ "type": "string"
2559
+ }
2560
+ }
2561
+ }
2562
+ }
2563
+ }
2564
+ }
2565
+ },
2566
+ "example": [
2567
+ {
2568
+ "hasMoreData": false,
2569
+ "usageHistory": [
2570
+ {
2571
+ "bytesUsed": 5,
2572
+ "extendedAttributes": [
2573
+ {
2574
+ "key": "string",
2575
+ "value": "string"
2576
+ },
2577
+ {
2578
+ "key": "string",
2579
+ "value": "string"
2580
+ },
2581
+ {
2582
+ "key": "string",
2583
+ "value": "string"
2584
+ },
2585
+ {
2586
+ "key": "string",
2587
+ "value": "string"
2588
+ },
2589
+ {
2590
+ "key": "string",
2591
+ "value": "string"
2592
+ },
2593
+ {
2594
+ "key": "string",
2595
+ "value": "string"
2596
+ },
2597
+ {
2598
+ "key": "string",
2599
+ "value": "string"
2600
+ }
2601
+ ],
2602
+ "servicePlan": "string",
2603
+ "smsUsed": 1,
2604
+ "source": "string",
2605
+ "timestamp": "string"
2606
+ },
2607
+ {
2608
+ "bytesUsed": 10,
2609
+ "extendedAttributes": [
2610
+ {
2611
+ "key": "string",
2612
+ "value": "string"
2613
+ },
2614
+ {
2615
+ "key": "string",
2616
+ "value": "string"
2617
+ },
2618
+ {
2619
+ "key": "string",
2620
+ "value": "string"
2621
+ },
2622
+ {
2623
+ "key": "string",
2624
+ "value": "string"
2625
+ },
2626
+ {
2627
+ "key": "string",
2628
+ "value": "string"
2629
+ }
2630
+ ],
2631
+ "servicePlan": "string",
2632
+ "smsUsed": 6,
2633
+ "source": "string",
2634
+ "timestamp": "string"
2635
+ },
2636
+ {
2637
+ "bytesUsed": 7,
2638
+ "extendedAttributes": [
2639
+ {
2640
+ "key": "string",
2641
+ "value": "string"
2642
+ },
2643
+ {
2644
+ "key": "string",
2645
+ "value": "string"
2646
+ },
2647
+ {
2648
+ "key": "string",
2649
+ "value": "string"
2650
+ },
2651
+ {
2652
+ "key": "string",
2653
+ "value": "string"
2654
+ }
2655
+ ],
2656
+ "servicePlan": "string",
2657
+ "smsUsed": 7,
2658
+ "source": "string",
2659
+ "timestamp": "string"
2660
+ },
2661
+ {
2662
+ "bytesUsed": 4,
2663
+ "extendedAttributes": [
2664
+ {
2665
+ "key": "string",
2666
+ "value": "string"
2667
+ },
2668
+ {
2669
+ "key": "string",
2670
+ "value": "string"
2671
+ },
2672
+ {
2673
+ "key": "string",
2674
+ "value": "string"
2675
+ },
2676
+ {
2677
+ "key": "string",
2678
+ "value": "string"
2679
+ },
2680
+ {
2681
+ "key": "string",
2682
+ "value": "string"
2683
+ },
2684
+ {
2685
+ "key": "string",
2686
+ "value": "string"
2687
+ },
2688
+ {
2689
+ "key": "string",
2690
+ "value": "string"
2691
+ }
2692
+ ],
2693
+ "servicePlan": "string",
2694
+ "smsUsed": 8,
2695
+ "source": "string",
2696
+ "timestamp": "string"
2697
+ },
2698
+ {
2699
+ "bytesUsed": 3,
2700
+ "extendedAttributes": [
2701
+ {
2702
+ "key": "string",
2703
+ "value": "string"
2704
+ },
2705
+ {
2706
+ "key": "string",
2707
+ "value": "string"
2708
+ },
2709
+ {
2710
+ "key": "string",
2711
+ "value": "string"
2712
+ },
2713
+ {
2714
+ "key": "string",
2715
+ "value": "string"
2716
+ },
2717
+ {
2718
+ "key": "string",
2719
+ "value": "string"
2720
+ },
2721
+ {
2722
+ "key": "string",
2723
+ "value": "string"
2724
+ },
2725
+ {
2726
+ "key": "string",
2727
+ "value": "string"
2728
+ },
2729
+ {
2730
+ "key": "string",
2731
+ "value": "string"
2732
+ },
2733
+ {
2734
+ "key": "string",
2735
+ "value": "string"
2736
+ },
2737
+ {
2738
+ "key": "string",
2739
+ "value": "string"
2740
+ }
2741
+ ],
2742
+ "servicePlan": "string",
2743
+ "smsUsed": 5,
2744
+ "source": "string",
2745
+ "timestamp": "string"
2746
+ },
2747
+ {
2748
+ "bytesUsed": 2,
2749
+ "extendedAttributes": [
2750
+ {
2751
+ "key": "string",
2752
+ "value": "string"
2753
+ },
2754
+ {
2755
+ "key": "string",
2756
+ "value": "string"
2757
+ },
2758
+ {
2759
+ "key": "string",
2760
+ "value": "string"
2761
+ },
2762
+ {
2763
+ "key": "string",
2764
+ "value": "string"
2765
+ },
2766
+ {
2767
+ "key": "string",
2768
+ "value": "string"
2769
+ },
2770
+ {
2771
+ "key": "string",
2772
+ "value": "string"
2773
+ },
2774
+ {
2775
+ "key": "string",
2776
+ "value": "string"
2777
+ },
2778
+ {
2779
+ "key": "string",
2780
+ "value": "string"
2781
+ }
2782
+ ],
2783
+ "servicePlan": "string",
2784
+ "smsUsed": 4,
2785
+ "source": "string",
2786
+ "timestamp": "string"
2787
+ },
2788
+ {
2789
+ "bytesUsed": 9,
2790
+ "extendedAttributes": [
2791
+ {
2792
+ "key": "string",
2793
+ "value": "string"
2794
+ },
2795
+ {
2796
+ "key": "string",
2797
+ "value": "string"
2798
+ },
2799
+ {
2800
+ "key": "string",
2801
+ "value": "string"
2802
+ },
2803
+ {
2804
+ "key": "string",
2805
+ "value": "string"
2806
+ },
2807
+ {
2808
+ "key": "string",
2809
+ "value": "string"
2810
+ },
2811
+ {
2812
+ "key": "string",
2813
+ "value": "string"
2814
+ }
2815
+ ],
2816
+ "servicePlan": "string",
2817
+ "smsUsed": 7,
2818
+ "source": "string",
2819
+ "timestamp": "string"
2820
+ },
2821
+ {
2822
+ "bytesUsed": 3,
2823
+ "extendedAttributes": [
2824
+ {
2825
+ "key": "string",
2826
+ "value": "string"
2827
+ },
2828
+ {
2829
+ "key": "string",
2830
+ "value": "string"
2831
+ },
2832
+ {
2833
+ "key": "string",
2834
+ "value": "string"
2835
+ },
2836
+ {
2837
+ "key": "string",
2838
+ "value": "string"
2839
+ },
2840
+ {
2841
+ "key": "string",
2842
+ "value": "string"
2843
+ },
2844
+ {
2845
+ "key": "string",
2846
+ "value": "string"
2847
+ },
2848
+ {
2849
+ "key": "string",
2850
+ "value": "string"
2851
+ }
2852
+ ],
2853
+ "servicePlan": "string",
2854
+ "smsUsed": 8,
2855
+ "source": "string",
2856
+ "timestamp": "string"
2857
+ },
2858
+ {
2859
+ "bytesUsed": 6,
2860
+ "extendedAttributes": [
2861
+ {
2862
+ "key": "string",
2863
+ "value": "string"
2864
+ },
2865
+ {
2866
+ "key": "string",
2867
+ "value": "string"
2868
+ },
2869
+ {
2870
+ "key": "string",
2871
+ "value": "string"
2872
+ },
2873
+ {
2874
+ "key": "string",
2875
+ "value": "string"
2876
+ },
2877
+ {
2878
+ "key": "string",
2879
+ "value": "string"
2880
+ }
2881
+ ],
2882
+ "servicePlan": "string",
2883
+ "smsUsed": 9,
2884
+ "source": "string",
2885
+ "timestamp": "string"
2886
+ },
2887
+ {
2888
+ "bytesUsed": 4,
2889
+ "extendedAttributes": [
2890
+ {
2891
+ "key": "string",
2892
+ "value": "string"
2893
+ },
2894
+ {
2895
+ "key": "string",
2896
+ "value": "string"
2897
+ },
2898
+ {
2899
+ "key": "string",
2900
+ "value": "string"
2901
+ },
2902
+ {
2903
+ "key": "string",
2904
+ "value": "string"
2905
+ },
2906
+ {
2907
+ "key": "string",
2908
+ "value": "string"
2909
+ },
2910
+ {
2911
+ "key": "string",
2912
+ "value": "string"
2913
+ },
2914
+ {
2915
+ "key": "string",
2916
+ "value": "string"
2917
+ },
2918
+ {
2919
+ "key": "string",
2920
+ "value": "string"
2921
+ },
2922
+ {
2923
+ "key": "string",
2924
+ "value": "string"
2925
+ }
2926
+ ],
2927
+ "servicePlan": "string",
2928
+ "smsUsed": 8,
2929
+ "source": "string",
2930
+ "timestamp": "string"
2931
+ }
2932
+ ]
2933
+ }
2934
+ ]
2935
+ }
2936
+ }
2937
+ }
2938
+ },
2939
+ "requestBody": {
2940
+ "description": "indeterminate body object",
2941
+ "content": {
2942
+ "application/json": {
2943
+ "schema": {
2944
+ "type": "object"
2945
+ }
2946
+ }
2947
+ }
2948
+ }
2949
+ }
2950
+ },
2951
+ "/devices/usage/actions/list/aggregate": {
2952
+ "post": {
2953
+ "tags": [
2954
+ "Devices"
2955
+ ],
2956
+ "operationId": "aggregateUsingPOST",
2957
+ "description": "The parameters and request body are for method: aggregateUsingPOST. Same endpoint also used in methods:",
2958
+ "responses": {
2959
+ "200": {
2960
+ "description": "Successful operation",
2961
+ "content": {
2962
+ "application/json": {
2963
+ "schema": {
2964
+ "title": "result",
2965
+ "type": "object"
2966
+ }
2967
+ }
2968
+ }
2969
+ }
2970
+ },
2971
+ "requestBody": {
2972
+ "description": "indeterminate body object",
2973
+ "content": {
2974
+ "application/json": {
2975
+ "schema": {
2976
+ "type": "object"
2977
+ }
2978
+ }
2979
+ }
2980
+ }
2981
+ }
2982
+ },
2983
+ "/devices/{serviceType}/actions/deviceId": {
2984
+ "put": {
2985
+ "tags": [
2986
+ "Devices"
2987
+ ],
2988
+ "operationId": "changeDeviceIdUsingPUT",
2989
+ "description": "The parameters and request body are for method: changeDeviceIdUsingPUT. Same endpoint also used in methods:",
2990
+ "responses": {
2991
+ "200": {
2992
+ "description": "Successful operation",
2993
+ "content": {
2994
+ "application/json": {
2995
+ "schema": {
2996
+ "title": "result",
2997
+ "type": "object"
2998
+ }
2999
+ }
3000
+ }
3001
+ }
3002
+ },
3003
+ "parameters": [
3004
+ {
3005
+ "name": "serviceType",
3006
+ "in": "path",
3007
+ "required": true,
3008
+ "schema": {
3009
+ "title": "serviceType",
3010
+ "type": "string"
3011
+ }
3012
+ }
3013
+ ],
3014
+ "requestBody": {
3015
+ "description": "indeterminate body object",
3016
+ "content": {
3017
+ "application/json": {
3018
+ "schema": {
3019
+ "type": "object"
3020
+ }
3021
+ }
3022
+ }
3023
+ }
3024
+ }
3025
+ },
3026
+ "/groups": {
3027
+ "post": {
3028
+ "tags": [
3029
+ "Groups"
3030
+ ],
3031
+ "operationId": "createDeviceGroupUsingPOST",
3032
+ "description": "The parameters and request body are for method: createDeviceGroupUsingPOST. Same endpoint also used in methods:",
3033
+ "responses": {
3034
+ "200": {
3035
+ "description": "Successful operation",
3036
+ "content": {
3037
+ "application/json": {
3038
+ "schema": {
3039
+ "title": "result",
3040
+ "type": "object"
3041
+ }
3042
+ }
3043
+ }
3044
+ }
3045
+ },
3046
+ "requestBody": {
3047
+ "description": "indeterminate body object",
3048
+ "content": {
3049
+ "application/json": {
3050
+ "schema": {
3051
+ "type": "object"
3052
+ }
3053
+ }
3054
+ }
3055
+ }
3056
+ }
3057
+ },
3058
+ "/groups/{aname}": {
3059
+ "get": {
3060
+ "tags": [
3061
+ "Groups"
3062
+ ],
3063
+ "operationId": "getListUsingGET",
3064
+ "description": "The parameters and request body are for method: getListUsingGET. Same endpoint also used in methods:",
3065
+ "responses": {
3066
+ "200": {
3067
+ "description": "Successful operation",
3068
+ "content": {
3069
+ "application/json": {
3070
+ "schema": {
3071
+ "type": "array",
3072
+ "items": {
3073
+ "type": "object",
3074
+ "properties": {
3075
+ "description": {
3076
+ "type": "string"
3077
+ },
3078
+ "extendedAttributes": {
3079
+ "type": "array",
3080
+ "items": {
3081
+ "type": "object",
3082
+ "properties": {
3083
+ "key": {
3084
+ "type": "string"
3085
+ },
3086
+ "value": {
3087
+ "type": "string"
3088
+ }
3089
+ }
3090
+ }
3091
+ },
3092
+ "isDefaultGroup": {
3093
+ "type": "boolean"
3094
+ },
3095
+ "name": {
3096
+ "type": "string"
3097
+ }
3098
+ }
3099
+ }
3100
+ },
3101
+ "example": [
3102
+ {
3103
+ "description": "string",
3104
+ "extendedAttributes": [
3105
+ {
3106
+ "key": "string",
3107
+ "value": "string"
3108
+ },
3109
+ {
3110
+ "key": "string",
3111
+ "value": "string"
3112
+ },
3113
+ {
3114
+ "key": "string",
3115
+ "value": "string"
3116
+ },
3117
+ {
3118
+ "key": "string",
3119
+ "value": "string"
3120
+ }
3121
+ ],
3122
+ "isDefaultGroup": false,
3123
+ "name": "string"
3124
+ },
3125
+ {
3126
+ "description": "string",
3127
+ "extendedAttributes": [
3128
+ {
3129
+ "key": "string",
3130
+ "value": "string"
3131
+ },
3132
+ {
3133
+ "key": "string",
3134
+ "value": "string"
3135
+ },
3136
+ {
3137
+ "key": "string",
3138
+ "value": "string"
3139
+ },
3140
+ {
3141
+ "key": "string",
3142
+ "value": "string"
3143
+ },
3144
+ {
3145
+ "key": "string",
3146
+ "value": "string"
3147
+ },
3148
+ {
3149
+ "key": "string",
3150
+ "value": "string"
3151
+ },
3152
+ {
3153
+ "key": "string",
3154
+ "value": "string"
3155
+ },
3156
+ {
3157
+ "key": "string",
3158
+ "value": "string"
3159
+ },
3160
+ {
3161
+ "key": "string",
3162
+ "value": "string"
3163
+ }
3164
+ ],
3165
+ "isDefaultGroup": false,
3166
+ "name": "string"
3167
+ }
3168
+ ]
3169
+ }
3170
+ }
3171
+ }
3172
+ },
3173
+ "parameters": [
3174
+ {
3175
+ "name": "aname",
3176
+ "in": "path",
3177
+ "required": true,
3178
+ "schema": {
3179
+ "title": "aname",
3180
+ "type": "string"
3181
+ }
3182
+ }
3183
+ ],
3184
+ "requestBody": {
3185
+ "content": {
3186
+ "application/json": {
3187
+ "schema": {
3188
+ "type": "object"
3189
+ },
3190
+ "example": {}
3191
+ }
3192
+ }
3193
+ }
3194
+ }
3195
+ },
3196
+ "/groups/{aname}/name/{gname}": {
3197
+ "get": {
3198
+ "tags": [
3199
+ "Groups"
3200
+ ],
3201
+ "operationId": "getDeviceGroupInfoUsingGET",
3202
+ "description": "The parameters and request body are for method: getDeviceGroupInfoUsingGET. Same endpoint also used in methods:",
3203
+ "responses": {
3204
+ "200": {
3205
+ "description": "Successful operation",
3206
+ "content": {
3207
+ "application/json": {
3208
+ "schema": {
3209
+ "title": "result",
3210
+ "type": "object"
3211
+ }
3212
+ }
3213
+ }
3214
+ }
3215
+ },
3216
+ "parameters": [
3217
+ {
3218
+ "name": "aname",
3219
+ "in": "path",
3220
+ "required": true,
3221
+ "schema": {
3222
+ "title": "aname",
3223
+ "type": "string"
3224
+ }
3225
+ },
3226
+ {
3227
+ "name": "gname",
3228
+ "in": "path",
3229
+ "required": true,
3230
+ "schema": {
3231
+ "title": "gname",
3232
+ "type": "string"
3233
+ }
3234
+ },
3235
+ {
3236
+ "name": "next",
3237
+ "in": "query",
3238
+ "required": true,
3239
+ "schema": {
3240
+ "type": "string"
3241
+ }
3242
+ }
3243
+ ],
3244
+ "requestBody": {
3245
+ "content": {
3246
+ "application/json": {
3247
+ "schema": {
3248
+ "type": "object"
3249
+ },
3250
+ "example": {}
3251
+ }
3252
+ }
3253
+ }
3254
+ },
3255
+ "put": {
3256
+ "tags": [
3257
+ "Groups"
3258
+ ],
3259
+ "operationId": "updateDeviceGroupUsingPUT",
3260
+ "description": "The parameters and request body are for method: updateDeviceGroupUsingPUT. Same endpoint also used in methods:",
3261
+ "responses": {
3262
+ "200": {
3263
+ "description": "Successful operation",
3264
+ "content": {
3265
+ "application/json": {
3266
+ "schema": {
3267
+ "title": "result",
3268
+ "type": "object"
3269
+ }
3270
+ }
3271
+ }
3272
+ }
3273
+ },
3274
+ "parameters": [
3275
+ {
3276
+ "name": "aname",
3277
+ "in": "path",
3278
+ "required": true,
3279
+ "schema": {
3280
+ "title": "aname",
3281
+ "type": "string"
3282
+ }
3283
+ },
3284
+ {
3285
+ "name": "gname",
3286
+ "in": "path",
3287
+ "required": true,
3288
+ "schema": {
3289
+ "title": "gname",
3290
+ "type": "string"
3291
+ }
3292
+ }
3293
+ ],
3294
+ "requestBody": {
3295
+ "description": "indeterminate body object",
3296
+ "content": {
3297
+ "application/json": {
3298
+ "schema": {
3299
+ "type": "object"
3300
+ }
3301
+ }
3302
+ }
3303
+ }
3304
+ },
3305
+ "delete": {
3306
+ "tags": [
3307
+ "Groups"
3308
+ ],
3309
+ "operationId": "deleteDeviceGroupUsingDELETE",
3310
+ "description": "The parameters and request body are for method: deleteDeviceGroupUsingDELETE. Same endpoint also used in methods:",
3311
+ "responses": {
3312
+ "200": {
3313
+ "description": "Successful operation",
3314
+ "content": {
3315
+ "application/json": {
3316
+ "schema": {
3317
+ "title": "result",
3318
+ "type": "object"
3319
+ }
3320
+ }
3321
+ }
3322
+ }
3323
+ },
3324
+ "parameters": [
3325
+ {
3326
+ "name": "aname",
3327
+ "in": "path",
3328
+ "required": true,
3329
+ "schema": {
3330
+ "title": "aname",
3331
+ "type": "string"
3332
+ }
3333
+ },
3334
+ {
3335
+ "name": "gname",
3336
+ "in": "path",
3337
+ "required": true,
3338
+ "schema": {
3339
+ "title": "gname",
3340
+ "type": "string"
3341
+ }
3342
+ }
3343
+ ],
3344
+ "requestBody": {
3345
+ "content": {
3346
+ "application/json": {
3347
+ "schema": {
3348
+ "type": "object"
3349
+ },
3350
+ "example": {}
3351
+ }
3352
+ }
3353
+ }
3354
+ }
3355
+ },
3356
+ "/plans/{aname}": {
3357
+ "get": {
3358
+ "tags": [
3359
+ "Plans"
3360
+ ],
3361
+ "operationId": "getServicePlanListUsingGET",
3362
+ "description": "The parameters and request body are for method: getServicePlanListUsingGET. Same endpoint also used in methods:",
3363
+ "responses": {
3364
+ "200": {
3365
+ "description": "Successful operation",
3366
+ "content": {
3367
+ "application/json": {
3368
+ "schema": {
3369
+ "type": "array",
3370
+ "items": {
3371
+ "type": "object",
3372
+ "properties": {
3373
+ "carrierServicePlanCode": {
3374
+ "type": "string"
3375
+ },
3376
+ "code": {
3377
+ "type": "string"
3378
+ },
3379
+ "extendedAttributes": {
3380
+ "type": "array",
3381
+ "items": {
3382
+ "type": "object",
3383
+ "properties": {
3384
+ "key": {
3385
+ "type": "string"
3386
+ },
3387
+ "value": {
3388
+ "type": "string"
3389
+ }
3390
+ }
3391
+ }
3392
+ },
3393
+ "name": {
3394
+ "type": "string"
3395
+ },
3396
+ "sizeKb": {
3397
+ "type": "number"
3398
+ }
3399
+ }
3400
+ }
3401
+ },
3402
+ "example": [
3403
+ {
3404
+ "carrierServicePlanCode": "string",
3405
+ "code": "string",
3406
+ "extendedAttributes": [
3407
+ {
3408
+ "key": "string",
3409
+ "value": "string"
3410
+ },
3411
+ {
3412
+ "key": "string",
3413
+ "value": "string"
3414
+ },
3415
+ {
3416
+ "key": "string",
3417
+ "value": "string"
3418
+ },
3419
+ {
3420
+ "key": "string",
3421
+ "value": "string"
3422
+ },
3423
+ {
3424
+ "key": "string",
3425
+ "value": "string"
3426
+ }
3427
+ ],
3428
+ "name": "string",
3429
+ "sizeKb": 7
3430
+ },
3431
+ {
3432
+ "carrierServicePlanCode": "string",
3433
+ "code": "string",
3434
+ "extendedAttributes": [
3435
+ {
3436
+ "key": "string",
3437
+ "value": "string"
3438
+ },
3439
+ {
3440
+ "key": "string",
3441
+ "value": "string"
3442
+ },
3443
+ {
3444
+ "key": "string",
3445
+ "value": "string"
3446
+ },
3447
+ {
3448
+ "key": "string",
3449
+ "value": "string"
3450
+ },
3451
+ {
3452
+ "key": "string",
3453
+ "value": "string"
3454
+ }
3455
+ ],
3456
+ "name": "string",
3457
+ "sizeKb": 5
3458
+ },
3459
+ {
3460
+ "carrierServicePlanCode": "string",
3461
+ "code": "string",
3462
+ "extendedAttributes": [
3463
+ {
3464
+ "key": "string",
3465
+ "value": "string"
3466
+ },
3467
+ {
3468
+ "key": "string",
3469
+ "value": "string"
3470
+ },
3471
+ {
3472
+ "key": "string",
3473
+ "value": "string"
3474
+ },
3475
+ {
3476
+ "key": "string",
3477
+ "value": "string"
3478
+ },
3479
+ {
3480
+ "key": "string",
3481
+ "value": "string"
3482
+ },
3483
+ {
3484
+ "key": "string",
3485
+ "value": "string"
3486
+ },
3487
+ {
3488
+ "key": "string",
3489
+ "value": "string"
3490
+ },
3491
+ {
3492
+ "key": "string",
3493
+ "value": "string"
3494
+ }
3495
+ ],
3496
+ "name": "string",
3497
+ "sizeKb": 4
3498
+ }
3499
+ ]
3500
+ }
3501
+ }
3502
+ }
3503
+ },
3504
+ "parameters": [
3505
+ {
3506
+ "name": "aname",
3507
+ "in": "path",
3508
+ "required": true,
3509
+ "schema": {
3510
+ "title": "aname",
3511
+ "type": "string"
3512
+ }
3513
+ }
3514
+ ],
3515
+ "requestBody": {
3516
+ "content": {
3517
+ "application/json": {
3518
+ "schema": {
3519
+ "type": "object"
3520
+ },
3521
+ "example": {}
3522
+ }
3523
+ }
3524
+ }
3525
+ }
3526
+ },
3527
+ "/session/login": {
3528
+ "post": {
3529
+ "tags": [
3530
+ "Session"
3531
+ ],
3532
+ "operationId": "loginUsingPOST",
3533
+ "description": "The parameters and request body are for method: loginUsingPOST. Same endpoint also used in methods:",
3534
+ "responses": {
3535
+ "200": {
3536
+ "description": "Successful operation",
3537
+ "content": {
3538
+ "application/json": {
3539
+ "schema": {
3540
+ "title": "result",
3541
+ "type": "object"
3542
+ }
3543
+ }
3544
+ }
3545
+ }
3546
+ },
3547
+ "requestBody": {
3548
+ "description": "indeterminate body object",
3549
+ "content": {
3550
+ "application/json": {
3551
+ "schema": {
3552
+ "type": "object"
3553
+ }
3554
+ }
3555
+ }
3556
+ }
3557
+ }
3558
+ },
3559
+ "/session/logout": {
3560
+ "post": {
3561
+ "tags": [
3562
+ "Session"
3563
+ ],
3564
+ "operationId": "logoutUsingPOST",
3565
+ "description": "The parameters and request body are for method: logoutUsingPOST. Same endpoint also used in methods:",
3566
+ "responses": {
3567
+ "200": {
3568
+ "description": "Successful operation",
3569
+ "content": {
3570
+ "application/json": {
3571
+ "schema": {
3572
+ "title": "result",
3573
+ "type": "object"
3574
+ }
3575
+ }
3576
+ }
3577
+ }
3578
+ },
3579
+ "requestBody": {
3580
+ "content": {
3581
+ "application/json": {
3582
+ "schema": {
3583
+ "type": "object"
3584
+ },
3585
+ "example": {}
3586
+ }
3587
+ }
3588
+ }
3589
+ }
3590
+ },
3591
+ "/session/password/actions/reset": {
3592
+ "put": {
3593
+ "tags": [
3594
+ "Session"
3595
+ ],
3596
+ "operationId": "resetUsingPUT",
3597
+ "description": "The parameters and request body are for method: resetUsingPUT. Same endpoint also used in methods:",
3598
+ "responses": {
3599
+ "200": {
3600
+ "description": "Successful operation",
3601
+ "content": {
3602
+ "application/json": {
3603
+ "schema": {
3604
+ "title": "result",
3605
+ "type": "object"
3606
+ }
3607
+ }
3608
+ }
3609
+ }
3610
+ },
3611
+ "requestBody": {
3612
+ "description": "indeterminate body object",
3613
+ "content": {
3614
+ "application/json": {
3615
+ "schema": {
3616
+ "type": "object"
3617
+ }
3618
+ }
3619
+ }
3620
+ }
3621
+ }
3622
+ },
3623
+ "/sms": {
3624
+ "post": {
3625
+ "tags": [
3626
+ "Sms"
3627
+ ],
3628
+ "operationId": "sendSmsMessageUsingPOST",
3629
+ "description": "The parameters and request body are for method: sendSmsMessageUsingPOST. Same endpoint also used in methods:",
3630
+ "responses": {
3631
+ "200": {
3632
+ "description": "Successful operation",
3633
+ "content": {
3634
+ "application/json": {
3635
+ "schema": {
3636
+ "title": "result",
3637
+ "type": "object"
3638
+ }
3639
+ }
3640
+ }
3641
+ }
3642
+ },
3643
+ "requestBody": {
3644
+ "description": "indeterminate body object",
3645
+ "content": {
3646
+ "application/json": {
3647
+ "schema": {
3648
+ "type": "object"
3649
+ }
3650
+ }
3651
+ }
3652
+ }
3653
+ }
3654
+ },
3655
+ "/sms/{aname}/history": {
3656
+ "get": {
3657
+ "tags": [
3658
+ "Sms"
3659
+ ],
3660
+ "operationId": "getSmsMessagesUsingGET",
3661
+ "description": "The parameters and request body are for method: getSmsMessagesUsingGET. Same endpoint also used in methods:",
3662
+ "responses": {
3663
+ "200": {
3664
+ "description": "Successful operation",
3665
+ "content": {
3666
+ "application/json": {
3667
+ "schema": {
3668
+ "title": "result",
3669
+ "type": "object"
3670
+ }
3671
+ }
3672
+ }
3673
+ }
3674
+ },
3675
+ "parameters": [
3676
+ {
3677
+ "name": "aname",
3678
+ "in": "path",
3679
+ "required": true,
3680
+ "schema": {
3681
+ "title": "aname",
3682
+ "type": "string"
3683
+ }
3684
+ },
3685
+ {
3686
+ "name": "next",
3687
+ "in": "query",
3688
+ "required": true,
3689
+ "schema": {
3690
+ "type": "string"
3691
+ }
3692
+ }
3693
+ ],
3694
+ "requestBody": {
3695
+ "content": {
3696
+ "application/json": {
3697
+ "schema": {
3698
+ "type": "object"
3699
+ },
3700
+ "example": {}
3701
+ }
3702
+ }
3703
+ }
3704
+ }
3705
+ },
3706
+ "/sms/{aname}/startCallbacks": {
3707
+ "put": {
3708
+ "tags": [
3709
+ "Sms"
3710
+ ],
3711
+ "operationId": "startSmsCallbackUsingPUT",
3712
+ "description": "The parameters and request body are for method: startSmsCallbackUsingPUT. Same endpoint also used in methods:",
3713
+ "responses": {
3714
+ "200": {
3715
+ "description": "Successful operation",
3716
+ "content": {
3717
+ "application/json": {
3718
+ "schema": {
3719
+ "title": "result",
3720
+ "type": "object"
3721
+ }
3722
+ }
3723
+ }
3724
+ }
3725
+ },
3726
+ "parameters": [
3727
+ {
3728
+ "name": "aname",
3729
+ "in": "path",
3730
+ "required": true,
3731
+ "schema": {
3732
+ "title": "aname",
3733
+ "type": "string"
3734
+ }
3735
+ }
3736
+ ],
3737
+ "requestBody": {
3738
+ "content": {
3739
+ "application/json": {
3740
+ "schema": {
3741
+ "type": "object"
3742
+ },
3743
+ "example": {}
3744
+ }
3745
+ }
3746
+ }
3747
+ }
3748
+ }
3749
+ },
3750
+ "components": {
3751
+ "schemas": {}
3752
+ }
3753
+ }