@itentialopensource/adapter-calix_cloud_devportal 0.3.6 → 0.4.0

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