@itentialopensource/adapter-calix_support_cloud 0.1.3 → 0.2.1
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.
- package/AUTH.md +8 -12
- package/CALLS.md +257 -23
- package/CHANGELOG.md +16 -0
- package/CONTRIBUTING.md +1 -160
- package/ENHANCE.md +2 -2
- package/README.md +31 -22
- package/SYSTEMINFO.md +16 -6
- package/adapter.js +159 -330
- package/adapterBase.js +538 -873
- package/changelogs/CHANGELOG.md +24 -0
- package/metadata.json +59 -0
- package/package.json +23 -26
- package/pronghorn.json +474 -142
- package/propertiesSchema.json +453 -40
- package/refs?service=git-upload-pack +0 -0
- package/report/adapter-openapi.json +4273 -0
- package/report/adapter-openapi.yaml +3359 -0
- package/report/adapterInfo.json +10 -0
- package/report/updateReport1691507361838.json +120 -0
- package/report/updateReport1692202399292.json +120 -0
- package/report/updateReport1694460285414.json +120 -0
- package/report/updateReport1698420388775.json +120 -0
- package/sampleProperties.json +64 -3
- package/test/integration/adapterTestBasicGet.js +1 -1
- package/test/integration/adapterTestConnectivity.js +91 -42
- package/test/integration/adapterTestIntegration.js +130 -2
- package/test/unit/adapterBaseTestUnit.js +388 -313
- package/test/unit/adapterTestUnit.js +306 -109
- package/utils/adapterInfo.js +1 -1
- package/utils/addAuth.js +1 -1
- package/utils/artifactize.js +1 -1
- package/utils/checkMigrate.js +1 -1
- package/utils/entitiesToDB.js +1 -0
- package/utils/findPath.js +1 -1
- package/utils/methodDocumentor.js +71 -23
- package/utils/modify.js +13 -15
- package/utils/packModificationScript.js +1 -1
- package/utils/taskMover.js +309 -0
- package/utils/tbScript.js +3 -10
- package/utils/tbUtils.js +2 -3
- package/utils/testRunner.js +1 -1
- package/utils/troubleshootingAdapter.js +1 -3
- package/.gitlab/.gitkeep +0 -0
- package/.gitlab/issue_templates/.gitkeep +0 -0
- package/.gitlab/issue_templates/Default.md +0 -17
- package/.gitlab/issue_templates/bugReportTemplate.md +0 -76
- package/.gitlab/issue_templates/featureRequestTemplate.md +0 -14
- package/workflows/README.md +0 -3
|
@@ -0,0 +1,3359 @@
|
|
|
1
|
+
openapi: 3.0.0
|
|
2
|
+
info:
|
|
3
|
+
title: Calix Support Cloud - Subscriber/Device API
|
|
4
|
+
description: >-
|
|
5
|
+
## Authentication
|
|
6
|
+
|
|
7
|
+
All requests to this API must be authenticated using Basic authentication. To obtain the credentials for this, access Calix Cloud's administrative menu and look for the "API for Web Clients (HTTPS)" username and password.
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
## URL
|
|
11
|
+
|
|
12
|
+
The base URLs for requests are:
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|Data Center Location |URL |
|
|
16
|
+
|
|
17
|
+
|---------------------|----|
|
|
18
|
+
|
|
19
|
+
|United States|https://gcs.calix.com:8444/|
|
|
20
|
+
|
|
21
|
+
|Canada|https://gcs-ca.calix.com:8444/|
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
## Request/Response Body Encoding
|
|
25
|
+
|
|
26
|
+
All requests and respsonses to this API use JSON encoding, unless otherwise specified.
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
## HTTP Response Status Codes
|
|
30
|
+
|
|
31
|
+
Common HTTP Response Codes used by the API are shown below:
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|Status Code |Description |Result or cause|
|
|
35
|
+
|
|
36
|
+
|---|---|---|
|
|
37
|
+
|
|
38
|
+
|200 |OK |The request was handled successfully|
|
|
39
|
+
|
|
40
|
+
|400 |Bad Request |The request contains invalid URL path and/or query parameters and/or payload.|
|
|
41
|
+
|
|
42
|
+
|401 |Unauthorized |The HTTP request does not contain a valid HTTP Basic Authentication Header|
|
|
43
|
+
|
|
44
|
+
|403 |Forbidden |The server understood the request but refused to fulfill it due to one of the following reasons:<br><ul><li>Tried to create a resource that already exists</li><li>Tried to edit a read-only attribute</li></ul>|
|
|
45
|
+
|
|
46
|
+
|404 |Not Found |No existing record can be found by the given id string or other query parameter.|
|
|
47
|
+
|
|
48
|
+
|500 |Internal Server Error |API Server failed to process the request due to an internal error.<br>Please report this failure to Calix Support.|
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
## API Retrieval Limits
|
|
52
|
+
|
|
53
|
+
Starting in the 20.2 release, the CSC API limits the number of responses to "retrieve all" requests. To retrieve all elements beyond the default, use the following parameters:
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
|Parameter | Permitted Values | Description|
|
|
57
|
+
|
|
58
|
+
|---|---|---|
|
|
59
|
+
|
|
60
|
+
|limit | 1-500 | Specifies the number of records to return. If no limit is present, the default limit of 100 is used.|
|
|
61
|
+
|
|
62
|
+
|skip| >=0 | Specifies an offset, in number of records to skip from the beginning of the returned values. Default is zero.|
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
For example:
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
| URL and parameters | Result rows retrieved |
|
|
69
|
+
|
|
70
|
+
|---|---|
|
|
71
|
+
|
|
72
|
+
|https://gcs.calix.com:8444/api/device | 1-100 |
|
|
73
|
+
|
|
74
|
+
|https://gcs.calix.com:8444/api/device?limit=200 | 1-200 |
|
|
75
|
+
|
|
76
|
+
|https://gcs.calix.com:8444/api/device?limit=200&skip=200 | 201-400 |
|
|
77
|
+
contact: {}
|
|
78
|
+
version: '1.0'
|
|
79
|
+
servers:
|
|
80
|
+
- url: http://example.com/:8444/api
|
|
81
|
+
variables: {}
|
|
82
|
+
- url: https://gcs.calix.com:8444/api
|
|
83
|
+
variables: {}
|
|
84
|
+
paths:
|
|
85
|
+
/device:
|
|
86
|
+
get:
|
|
87
|
+
tags:
|
|
88
|
+
- Device Data Management
|
|
89
|
+
summary: RetrieveAllDevices
|
|
90
|
+
description: >-
|
|
91
|
+
Retrieve a list of all devices, returning a JSON array of device JSON objects, each describing a device.
|
|
92
|
+
|
|
93
|
+
There is no filtering nor limit/offset capability with this request.
|
|
94
|
+
operationId: RetrieveAllDevices
|
|
95
|
+
parameters: []
|
|
96
|
+
responses:
|
|
97
|
+
'200':
|
|
98
|
+
description: OK
|
|
99
|
+
headers:
|
|
100
|
+
Transfer-Encoding:
|
|
101
|
+
content:
|
|
102
|
+
text/plain:
|
|
103
|
+
schema:
|
|
104
|
+
type: string
|
|
105
|
+
example: chunked
|
|
106
|
+
example: chunked
|
|
107
|
+
content:
|
|
108
|
+
application/json:
|
|
109
|
+
schema:
|
|
110
|
+
type: array
|
|
111
|
+
items:
|
|
112
|
+
$ref: '#/components/schemas/RetrieveAllDevice'
|
|
113
|
+
description: ''
|
|
114
|
+
example:
|
|
115
|
+
- _id: 12837558-000631-CXNK001D9030
|
|
116
|
+
manufacturer: Calix
|
|
117
|
+
manufacturerOUI: '000631'
|
|
118
|
+
productClass: ENT
|
|
119
|
+
modelName: '844E-1'
|
|
120
|
+
hardwareVersion: '3000219601'
|
|
121
|
+
softwareVersion: 12.2.8.1.11
|
|
122
|
+
serialNumber: CXNK001D9030
|
|
123
|
+
registrationId: ''
|
|
124
|
+
macAddress: 00:06:31:ed:f7:b0
|
|
125
|
+
periodicInformInterval: 86400
|
|
126
|
+
dataModelName: tr098
|
|
127
|
+
timezoneOffset: -08:00
|
|
128
|
+
ipAddress: 192.168.92.2
|
|
129
|
+
changeCounter: 24
|
|
130
|
+
defaultGateway: 192.168.92.1
|
|
131
|
+
subnetMask: 255.255.255.0
|
|
132
|
+
wapGatewaySn: FTX133981PW
|
|
133
|
+
provRecordStatus: Succeeded
|
|
134
|
+
opMode: RG
|
|
135
|
+
wanAccessType: CopperEthernet
|
|
136
|
+
stunEnabled: true
|
|
137
|
+
udpConnectionRequestAddr: 99.111.154.74:30005
|
|
138
|
+
lastInformTime: 2019-04-17T05:40:38.904Z
|
|
139
|
+
createTime: 2019-03-20T13:36:00.657Z
|
|
140
|
+
hardwareSerialNumber: '261503000429'
|
|
141
|
+
- _id: 12837558-000631-CXNK001D9031
|
|
142
|
+
manufacturerOUI: '000631'
|
|
143
|
+
serialNumber: CXNK001D9031
|
|
144
|
+
createTime: 2019-04-09T16:04:36.630Z
|
|
145
|
+
- _id: 12837558-CCBE59-CXNK005763A3
|
|
146
|
+
manufacturer: Calix
|
|
147
|
+
manufacturerOUI: CCBE59
|
|
148
|
+
productClass: GigaSpire
|
|
149
|
+
modelName: GS2020E
|
|
150
|
+
hardwareVersion: '3000282601'
|
|
151
|
+
softwareVersion: 19.1.0.1.4
|
|
152
|
+
serialNumber: CXNK005763A3
|
|
153
|
+
registrationId: ''
|
|
154
|
+
macAddress: cc:be:59:fc:07:70
|
|
155
|
+
periodicInformInterval: 86400
|
|
156
|
+
dataModelName: tr098
|
|
157
|
+
timezoneOffset: -04:00
|
|
158
|
+
ipAddress: 192.168.10.191
|
|
159
|
+
changeCounter: 1
|
|
160
|
+
opRole: Controller
|
|
161
|
+
defaultGateway: 192.168.10.1
|
|
162
|
+
subnetMask: 255.255.255.0
|
|
163
|
+
opMode: RG
|
|
164
|
+
wanAccessType: CopperEthernet
|
|
165
|
+
stunEnabled: true
|
|
166
|
+
lastInformTime: 2019-05-20T18:13:01.371Z
|
|
167
|
+
createTime: 2019-05-10T18:53:59.776Z
|
|
168
|
+
hardwareSerialNumber: '391806000136'
|
|
169
|
+
- _id: 12837558-44657F-CXNK005A77A9
|
|
170
|
+
manufacturer: Calix
|
|
171
|
+
manufacturerOUI: 44657F
|
|
172
|
+
productClass: GigaSpire
|
|
173
|
+
modelName: GS2026E
|
|
174
|
+
hardwareVersion: '3000281011'
|
|
175
|
+
softwareVersion: 19.1.0.1.4
|
|
176
|
+
serialNumber: CXNK005A77A9
|
|
177
|
+
registrationId: ''
|
|
178
|
+
macAddress: 44:65:7f:14:8f:60
|
|
179
|
+
periodicInformInterval: 86400
|
|
180
|
+
dataModelName: tr098
|
|
181
|
+
timezoneOffset: -04:00
|
|
182
|
+
ipAddress: 192.168.1.71
|
|
183
|
+
changeCounter: 15
|
|
184
|
+
opRole: Controller
|
|
185
|
+
defaultGateway: 192.168.1.254
|
|
186
|
+
subnetMask: 255.255.255.0
|
|
187
|
+
opMode: RG
|
|
188
|
+
wanAccessType: CopperEthernet
|
|
189
|
+
stunEnabled: true
|
|
190
|
+
udpConnectionRequestAddr: 99.111.154.74:60018
|
|
191
|
+
lastInformTime: 2019-05-21T13:18:01.219Z
|
|
192
|
+
createTime: 2019-04-08T20:55:53.295Z
|
|
193
|
+
hardwareSerialNumber: '391809000281'
|
|
194
|
+
example:
|
|
195
|
+
- _id: 12837558-000631-CXNK001D9030
|
|
196
|
+
manufacturer: Calix
|
|
197
|
+
manufacturerOUI: '000631'
|
|
198
|
+
productClass: ENT
|
|
199
|
+
modelName: '844E-1'
|
|
200
|
+
hardwareVersion: '3000219601'
|
|
201
|
+
softwareVersion: 12.2.8.1.11
|
|
202
|
+
serialNumber: CXNK001D9030
|
|
203
|
+
registrationId: ''
|
|
204
|
+
macAddress: 00:06:31:ed:f7:b0
|
|
205
|
+
periodicInformInterval: 86400
|
|
206
|
+
dataModelName: tr098
|
|
207
|
+
timezoneOffset: -08:00
|
|
208
|
+
ipAddress: 192.168.92.2
|
|
209
|
+
changeCounter: 24
|
|
210
|
+
defaultGateway: 192.168.92.1
|
|
211
|
+
subnetMask: 255.255.255.0
|
|
212
|
+
wapGatewaySn: FTX133981PW
|
|
213
|
+
provRecordStatus: Succeeded
|
|
214
|
+
opMode: RG
|
|
215
|
+
wanAccessType: CopperEthernet
|
|
216
|
+
stunEnabled: true
|
|
217
|
+
udpConnectionRequestAddr: 99.111.154.74:30005
|
|
218
|
+
lastInformTime: 2019-04-17T05:40:38.904Z
|
|
219
|
+
createTime: 2019-03-20T13:36:00.657Z
|
|
220
|
+
hardwareSerialNumber: '261503000429'
|
|
221
|
+
- _id: 12837558-000631-CXNK001D9031
|
|
222
|
+
manufacturerOUI: '000631'
|
|
223
|
+
serialNumber: CXNK001D9031
|
|
224
|
+
createTime: 2019-04-09T16:04:36.630Z
|
|
225
|
+
- _id: 12837558-CCBE59-CXNK005763A3
|
|
226
|
+
manufacturer: Calix
|
|
227
|
+
manufacturerOUI: CCBE59
|
|
228
|
+
productClass: GigaSpire
|
|
229
|
+
modelName: GS2020E
|
|
230
|
+
hardwareVersion: '3000282601'
|
|
231
|
+
softwareVersion: 19.1.0.1.4
|
|
232
|
+
serialNumber: CXNK005763A3
|
|
233
|
+
registrationId: ''
|
|
234
|
+
macAddress: cc:be:59:fc:07:70
|
|
235
|
+
periodicInformInterval: 86400
|
|
236
|
+
dataModelName: tr098
|
|
237
|
+
timezoneOffset: -04:00
|
|
238
|
+
ipAddress: 192.168.10.191
|
|
239
|
+
changeCounter: 1
|
|
240
|
+
opRole: Controller
|
|
241
|
+
defaultGateway: 192.168.10.1
|
|
242
|
+
subnetMask: 255.255.255.0
|
|
243
|
+
opMode: RG
|
|
244
|
+
wanAccessType: CopperEthernet
|
|
245
|
+
stunEnabled: true
|
|
246
|
+
lastInformTime: 2019-05-20T18:13:01.371Z
|
|
247
|
+
createTime: 2019-05-10T18:53:59.776Z
|
|
248
|
+
hardwareSerialNumber: '391806000136'
|
|
249
|
+
- _id: 12837558-44657F-CXNK005A77A9
|
|
250
|
+
manufacturer: Calix
|
|
251
|
+
manufacturerOUI: 44657F
|
|
252
|
+
productClass: GigaSpire
|
|
253
|
+
modelName: GS2026E
|
|
254
|
+
hardwareVersion: '3000281011'
|
|
255
|
+
softwareVersion: 19.1.0.1.4
|
|
256
|
+
serialNumber: CXNK005A77A9
|
|
257
|
+
registrationId: ''
|
|
258
|
+
macAddress: 44:65:7f:14:8f:60
|
|
259
|
+
periodicInformInterval: 86400
|
|
260
|
+
dataModelName: tr098
|
|
261
|
+
timezoneOffset: -04:00
|
|
262
|
+
ipAddress: 192.168.1.71
|
|
263
|
+
changeCounter: 15
|
|
264
|
+
opRole: Controller
|
|
265
|
+
defaultGateway: 192.168.1.254
|
|
266
|
+
subnetMask: 255.255.255.0
|
|
267
|
+
opMode: RG
|
|
268
|
+
wanAccessType: CopperEthernet
|
|
269
|
+
stunEnabled: true
|
|
270
|
+
udpConnectionRequestAddr: 99.111.154.74:60018
|
|
271
|
+
lastInformTime: 2019-05-21T13:18:01.219Z
|
|
272
|
+
createTime: 2019-04-08T20:55:53.295Z
|
|
273
|
+
hardwareSerialNumber: '391809000281'
|
|
274
|
+
deprecated: false
|
|
275
|
+
/device/{deviceid}:
|
|
276
|
+
get:
|
|
277
|
+
tags:
|
|
278
|
+
- Device Data Management
|
|
279
|
+
summary: RetrieveDeviceByID
|
|
280
|
+
description: Retrieve a single device using its internal _id. Returns a JSON object describing the device.
|
|
281
|
+
operationId: RetrieveDeviceByID
|
|
282
|
+
parameters:
|
|
283
|
+
- name: deviceid
|
|
284
|
+
in: path
|
|
285
|
+
description: ''
|
|
286
|
+
required: true
|
|
287
|
+
style: simple
|
|
288
|
+
schema:
|
|
289
|
+
type: string
|
|
290
|
+
responses:
|
|
291
|
+
'200':
|
|
292
|
+
description: OK
|
|
293
|
+
headers:
|
|
294
|
+
Content-Length:
|
|
295
|
+
content:
|
|
296
|
+
text/plain:
|
|
297
|
+
schema:
|
|
298
|
+
type: string
|
|
299
|
+
example: '893'
|
|
300
|
+
example: '893'
|
|
301
|
+
content:
|
|
302
|
+
application/json:
|
|
303
|
+
schema:
|
|
304
|
+
allOf:
|
|
305
|
+
- $ref: '#/components/schemas/RetrieveDeviceByID'
|
|
306
|
+
- example:
|
|
307
|
+
_id: 12837558-000631-CXNK001D9030
|
|
308
|
+
manufacturer: Calix
|
|
309
|
+
manufacturerOUI: '000631'
|
|
310
|
+
productClass: ENT
|
|
311
|
+
modelName: '844E-1'
|
|
312
|
+
hardwareVersion: '3000219601'
|
|
313
|
+
softwareVersion: 12.2.8.1.11
|
|
314
|
+
serialNumber: CXNK001D9030
|
|
315
|
+
registrationId: ''
|
|
316
|
+
macAddress: 00:06:31:ed:f7:b0
|
|
317
|
+
periodicInformInterval: 86400
|
|
318
|
+
dataModelName: tr098
|
|
319
|
+
timezoneOffset: -08:00
|
|
320
|
+
ipAddress: 192.168.92.2
|
|
321
|
+
changeCounter: 24
|
|
322
|
+
defaultGateway: 192.168.92.1
|
|
323
|
+
subnetMask: 255.255.255.0
|
|
324
|
+
wapGatewaySn: FTX133981PW
|
|
325
|
+
provRecordStatus: Succeeded
|
|
326
|
+
opMode: RG
|
|
327
|
+
wanAccessType: CopperEthernet
|
|
328
|
+
stunEnabled: true
|
|
329
|
+
udpConnectionRequestAddr: 99.111.154.74:30005
|
|
330
|
+
lastInformTime: 2019-04-17T05:40:38.904Z
|
|
331
|
+
createTime: 2019-03-20T13:36:00.657Z
|
|
332
|
+
hardwareSerialNumber: '261503000429'
|
|
333
|
+
example:
|
|
334
|
+
_id: 12837558-000631-CXNK001D9030
|
|
335
|
+
manufacturer: Calix
|
|
336
|
+
manufacturerOUI: '000631'
|
|
337
|
+
productClass: ENT
|
|
338
|
+
modelName: '844E-1'
|
|
339
|
+
hardwareVersion: '3000219601'
|
|
340
|
+
softwareVersion: 12.2.8.1.11
|
|
341
|
+
serialNumber: CXNK001D9030
|
|
342
|
+
registrationId: ''
|
|
343
|
+
macAddress: 00:06:31:ed:f7:b0
|
|
344
|
+
periodicInformInterval: 86400
|
|
345
|
+
dataModelName: tr098
|
|
346
|
+
timezoneOffset: -08:00
|
|
347
|
+
ipAddress: 192.168.92.2
|
|
348
|
+
changeCounter: 24
|
|
349
|
+
defaultGateway: 192.168.92.1
|
|
350
|
+
subnetMask: 255.255.255.0
|
|
351
|
+
wapGatewaySn: FTX133981PW
|
|
352
|
+
provRecordStatus: Succeeded
|
|
353
|
+
opMode: RG
|
|
354
|
+
wanAccessType: CopperEthernet
|
|
355
|
+
stunEnabled: true
|
|
356
|
+
udpConnectionRequestAddr: 99.111.154.74:30005
|
|
357
|
+
lastInformTime: 2019-04-17T05:40:38.904Z
|
|
358
|
+
createTime: 2019-03-20T13:36:00.657Z
|
|
359
|
+
hardwareSerialNumber: '261503000429'
|
|
360
|
+
deprecated: false
|
|
361
|
+
delete:
|
|
362
|
+
tags:
|
|
363
|
+
- Device Data Management
|
|
364
|
+
summary: DeleteDevice
|
|
365
|
+
description: Delete a single device using its internal _id. Returns only a status code for success/failure; no body.
|
|
366
|
+
operationId: DeleteDevice
|
|
367
|
+
parameters:
|
|
368
|
+
- name: deviceid
|
|
369
|
+
in: path
|
|
370
|
+
description: ''
|
|
371
|
+
required: true
|
|
372
|
+
style: simple
|
|
373
|
+
schema:
|
|
374
|
+
type: string
|
|
375
|
+
responses:
|
|
376
|
+
'200':
|
|
377
|
+
description: OK
|
|
378
|
+
headers:
|
|
379
|
+
Content-Length:
|
|
380
|
+
content:
|
|
381
|
+
text/plain:
|
|
382
|
+
schema:
|
|
383
|
+
type: string
|
|
384
|
+
example: '0'
|
|
385
|
+
example: '0'
|
|
386
|
+
content: {}
|
|
387
|
+
deprecated: false
|
|
388
|
+
/subscriber:
|
|
389
|
+
post:
|
|
390
|
+
tags:
|
|
391
|
+
- Subscriber Management
|
|
392
|
+
summary: CreateSubscriber
|
|
393
|
+
description: >-
|
|
394
|
+
Create a new subscriber, using a valid subscriber JSON object which does not contain "createTime" or "_id".
|
|
395
|
+
|
|
396
|
+
|
|
397
|
+
Returns the _id value of the subscriber record if successful.
|
|
398
|
+
operationId: CreateSubscriber
|
|
399
|
+
parameters: []
|
|
400
|
+
requestBody:
|
|
401
|
+
description: ''
|
|
402
|
+
content:
|
|
403
|
+
application/json:
|
|
404
|
+
schema:
|
|
405
|
+
allOf:
|
|
406
|
+
- $ref: '#/components/schemas/CreateSubscriberRequest'
|
|
407
|
+
- example:
|
|
408
|
+
customId: '67890'
|
|
409
|
+
name: Test user
|
|
410
|
+
locations:
|
|
411
|
+
- address:
|
|
412
|
+
streetLine1: 123 Oak St
|
|
413
|
+
city: Anytown
|
|
414
|
+
state: ZZ
|
|
415
|
+
zip: '00000'
|
|
416
|
+
country: USA
|
|
417
|
+
contacts:
|
|
418
|
+
- phone: 919-123-4567
|
|
419
|
+
email: some@user.org
|
|
420
|
+
devices:
|
|
421
|
+
- CXNK00001234
|
|
422
|
+
example:
|
|
423
|
+
customId: '67890'
|
|
424
|
+
name: Test user
|
|
425
|
+
locations:
|
|
426
|
+
- address:
|
|
427
|
+
streetLine1: 123 Oak St
|
|
428
|
+
city: Anytown
|
|
429
|
+
state: ZZ
|
|
430
|
+
zip: '00000'
|
|
431
|
+
country: USA
|
|
432
|
+
contacts:
|
|
433
|
+
- phone: 919-123-4567
|
|
434
|
+
email: some@user.org
|
|
435
|
+
devices:
|
|
436
|
+
- CXNK00001234
|
|
437
|
+
required: true
|
|
438
|
+
responses:
|
|
439
|
+
'200':
|
|
440
|
+
description: OK
|
|
441
|
+
headers:
|
|
442
|
+
Content-Length:
|
|
443
|
+
content:
|
|
444
|
+
text/plain:
|
|
445
|
+
schema:
|
|
446
|
+
type: string
|
|
447
|
+
example: '36'
|
|
448
|
+
example: '36'
|
|
449
|
+
content:
|
|
450
|
+
text/plain:
|
|
451
|
+
schema:
|
|
452
|
+
type: string
|
|
453
|
+
example: 45600aa6-ee09-4c0d-98e3-9569bc908673
|
|
454
|
+
example: 45600aa6-ee09-4c0d-98e3-9569bc908673
|
|
455
|
+
deprecated: false
|
|
456
|
+
get:
|
|
457
|
+
tags:
|
|
458
|
+
- Subscriber Management
|
|
459
|
+
summary: RetrieveAllSubscribers
|
|
460
|
+
description: >-
|
|
461
|
+
Retrieve a list of all subscribers, returning a JSON array of subscriber JSON objects, each describing a subscriber.
|
|
462
|
+
|
|
463
|
+
There is no filtering nor limit/offset capability with this request.
|
|
464
|
+
operationId: RetrieveAllSubscribers
|
|
465
|
+
parameters: []
|
|
466
|
+
responses:
|
|
467
|
+
'200':
|
|
468
|
+
description: OK
|
|
469
|
+
headers:
|
|
470
|
+
Transfer-Encoding:
|
|
471
|
+
content:
|
|
472
|
+
text/plain:
|
|
473
|
+
schema:
|
|
474
|
+
type: string
|
|
475
|
+
example: chunked
|
|
476
|
+
example: chunked
|
|
477
|
+
content:
|
|
478
|
+
application/json:
|
|
479
|
+
schema:
|
|
480
|
+
type: array
|
|
481
|
+
items:
|
|
482
|
+
$ref: '#/components/schemas/RetrieveAllSubscriber'
|
|
483
|
+
description: ''
|
|
484
|
+
example:
|
|
485
|
+
- _id: 7317b27e-528f-4c40-83bc-6d8a46edd0a3
|
|
486
|
+
customId: '67890'
|
|
487
|
+
name: Test user
|
|
488
|
+
locations:
|
|
489
|
+
- address:
|
|
490
|
+
streetLine1: 123 Oak St
|
|
491
|
+
city: Anytown
|
|
492
|
+
state: ZZ
|
|
493
|
+
zip: '00000'
|
|
494
|
+
country: USA
|
|
495
|
+
contacts:
|
|
496
|
+
- phone: 919-123-4567
|
|
497
|
+
email: some@user.org
|
|
498
|
+
devices:
|
|
499
|
+
- CXNK00001234
|
|
500
|
+
example:
|
|
501
|
+
- _id: 7317b27e-528f-4c40-83bc-6d8a46edd0a3
|
|
502
|
+
customId: '67890'
|
|
503
|
+
name: Test user
|
|
504
|
+
locations:
|
|
505
|
+
- address:
|
|
506
|
+
streetLine1: 123 Oak St
|
|
507
|
+
city: Anytown
|
|
508
|
+
state: ZZ
|
|
509
|
+
zip: '00000'
|
|
510
|
+
country: USA
|
|
511
|
+
contacts:
|
|
512
|
+
- phone: 919-123-4567
|
|
513
|
+
email: some@user.org
|
|
514
|
+
devices:
|
|
515
|
+
- CXNK00001234
|
|
516
|
+
deprecated: false
|
|
517
|
+
put:
|
|
518
|
+
tags:
|
|
519
|
+
- Subscriber Management
|
|
520
|
+
summary: UpdateSubscriberorreplaceassociatedsystem
|
|
521
|
+
description: >-
|
|
522
|
+
To update subscriber details, first retrieve the subscriber record, and then PUT the record back with your changes, and all other elements intact.
|
|
523
|
+
|
|
524
|
+
|
|
525
|
+
To use this to replace a system and maintain configuration, retrieve the record with the old system ID (in "devices"), and PUT the record back with the new system ID substituted. Do not delete and then add; if you do this in one transaction, Cloud understands that this is a system swap-out.
|
|
526
|
+
operationId: UpdateSubscriberorreplaceassociatedsystem
|
|
527
|
+
parameters: []
|
|
528
|
+
requestBody:
|
|
529
|
+
description: ''
|
|
530
|
+
content:
|
|
531
|
+
application/json:
|
|
532
|
+
schema:
|
|
533
|
+
allOf:
|
|
534
|
+
- $ref: '#/components/schemas/UpdateSubscriberorreplaceassociatedsystemRequest'
|
|
535
|
+
- example:
|
|
536
|
+
customId: existingSubscriberLocationID
|
|
537
|
+
name: Customer XYZ
|
|
538
|
+
_id: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
|
|
539
|
+
locations:
|
|
540
|
+
- address: {}
|
|
541
|
+
devices:
|
|
542
|
+
- CXNKFF00FF00
|
|
543
|
+
contacts:
|
|
544
|
+
- phone: 312-555-1060
|
|
545
|
+
email: me@nowhere.bad
|
|
546
|
+
example:
|
|
547
|
+
customId: existingSubscriberLocationID
|
|
548
|
+
name: Customer XYZ
|
|
549
|
+
_id: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
|
|
550
|
+
locations:
|
|
551
|
+
- address: {}
|
|
552
|
+
devices:
|
|
553
|
+
- CXNKFF00FF00
|
|
554
|
+
contacts:
|
|
555
|
+
- phone: 312-555-1060
|
|
556
|
+
email: me@nowhere.bad
|
|
557
|
+
required: true
|
|
558
|
+
responses:
|
|
559
|
+
'200':
|
|
560
|
+
description: OK
|
|
561
|
+
headers:
|
|
562
|
+
Content-Length:
|
|
563
|
+
content:
|
|
564
|
+
text/plain:
|
|
565
|
+
schema:
|
|
566
|
+
type: string
|
|
567
|
+
example: '413'
|
|
568
|
+
example: '413'
|
|
569
|
+
content:
|
|
570
|
+
application/json:
|
|
571
|
+
schema:
|
|
572
|
+
allOf:
|
|
573
|
+
- $ref: '#/components/schemas/RetrieveAllSubscriber'
|
|
574
|
+
- example:
|
|
575
|
+
_id: 7317b27e-528f-4c40-83bc-6d8a46edd0a3
|
|
576
|
+
customId: '67890'
|
|
577
|
+
name: Test user
|
|
578
|
+
locations:
|
|
579
|
+
- address:
|
|
580
|
+
streetLine1: 123 Oak St
|
|
581
|
+
city: Anytown
|
|
582
|
+
state: ZZ
|
|
583
|
+
zip: '00000'
|
|
584
|
+
country: USA
|
|
585
|
+
contacts:
|
|
586
|
+
- phone: 919-123-4567
|
|
587
|
+
email: some@user.org
|
|
588
|
+
devices:
|
|
589
|
+
- CXNK00001234
|
|
590
|
+
example:
|
|
591
|
+
_id: 7317b27e-528f-4c40-83bc-6d8a46edd0a3
|
|
592
|
+
customId: '67890'
|
|
593
|
+
name: Test user
|
|
594
|
+
locations:
|
|
595
|
+
- address:
|
|
596
|
+
streetLine1: 123 Oak St
|
|
597
|
+
city: Anytown
|
|
598
|
+
state: ZZ
|
|
599
|
+
zip: '00000'
|
|
600
|
+
country: USA
|
|
601
|
+
contacts:
|
|
602
|
+
- phone: 919-123-4567
|
|
603
|
+
email: some@user.org
|
|
604
|
+
devices:
|
|
605
|
+
- CXNK00001234
|
|
606
|
+
deprecated: false
|
|
607
|
+
/subscriber/{_id}:
|
|
608
|
+
get:
|
|
609
|
+
tags:
|
|
610
|
+
- Subscriber Management
|
|
611
|
+
summary: RetrieveSubscriberbyInternalID
|
|
612
|
+
description: >-
|
|
613
|
+
Retrieve a single subscriber by specifying the internal _id. This value is created by Calix Support Cloud when the subscriber is created.
|
|
614
|
+
|
|
615
|
+
Returns a JSON object representing the Subscriber.
|
|
616
|
+
operationId: RetrieveSubscriberbyInternalID
|
|
617
|
+
parameters:
|
|
618
|
+
- name: _id
|
|
619
|
+
in: path
|
|
620
|
+
description: ''
|
|
621
|
+
required: true
|
|
622
|
+
style: simple
|
|
623
|
+
schema:
|
|
624
|
+
type: string
|
|
625
|
+
responses:
|
|
626
|
+
'200':
|
|
627
|
+
description: OK
|
|
628
|
+
headers:
|
|
629
|
+
Content-Length:
|
|
630
|
+
content:
|
|
631
|
+
text/plain:
|
|
632
|
+
schema:
|
|
633
|
+
type: string
|
|
634
|
+
example: '413'
|
|
635
|
+
example: '413'
|
|
636
|
+
content:
|
|
637
|
+
application/json:
|
|
638
|
+
schema:
|
|
639
|
+
allOf:
|
|
640
|
+
- $ref: '#/components/schemas/RetrieveAllSubscriber'
|
|
641
|
+
- example:
|
|
642
|
+
_id: 7317b27e-528f-4c40-83bc-6d8a46edd0a3
|
|
643
|
+
customId: '67890'
|
|
644
|
+
name: Test user
|
|
645
|
+
locations:
|
|
646
|
+
- address:
|
|
647
|
+
streetLine1: 123 Oak St
|
|
648
|
+
city: Anytown
|
|
649
|
+
state: ZZ
|
|
650
|
+
zip: '00000'
|
|
651
|
+
country: USA
|
|
652
|
+
contacts:
|
|
653
|
+
- phone: 919-123-4567
|
|
654
|
+
email: some@user.org
|
|
655
|
+
devices:
|
|
656
|
+
- CXNK00001234
|
|
657
|
+
example:
|
|
658
|
+
_id: 7317b27e-528f-4c40-83bc-6d8a46edd0a3
|
|
659
|
+
customId: '67890'
|
|
660
|
+
name: Test user
|
|
661
|
+
locations:
|
|
662
|
+
- address:
|
|
663
|
+
streetLine1: 123 Oak St
|
|
664
|
+
city: Anytown
|
|
665
|
+
state: ZZ
|
|
666
|
+
zip: '00000'
|
|
667
|
+
country: USA
|
|
668
|
+
contacts:
|
|
669
|
+
- phone: 919-123-4567
|
|
670
|
+
email: some@user.org
|
|
671
|
+
devices:
|
|
672
|
+
- CXNK00001234
|
|
673
|
+
deprecated: false
|
|
674
|
+
delete:
|
|
675
|
+
tags:
|
|
676
|
+
- Subscriber Management
|
|
677
|
+
summary: DeleteSubscriber
|
|
678
|
+
description: >-
|
|
679
|
+
Delete a single subscriber by specifying the internal _id. This value is created by Calix Support Cloud when the subscriber is created.
|
|
680
|
+
|
|
681
|
+
|
|
682
|
+
No return body.
|
|
683
|
+
operationId: DeleteSubscriber
|
|
684
|
+
parameters:
|
|
685
|
+
- name: _id
|
|
686
|
+
in: path
|
|
687
|
+
description: ''
|
|
688
|
+
required: true
|
|
689
|
+
style: simple
|
|
690
|
+
schema:
|
|
691
|
+
type: string
|
|
692
|
+
responses:
|
|
693
|
+
'200':
|
|
694
|
+
description: OK
|
|
695
|
+
headers:
|
|
696
|
+
Content-Length:
|
|
697
|
+
content:
|
|
698
|
+
text/plain:
|
|
699
|
+
schema:
|
|
700
|
+
type: string
|
|
701
|
+
example: '0'
|
|
702
|
+
example: '0'
|
|
703
|
+
content: {}
|
|
704
|
+
deprecated: false
|
|
705
|
+
/provisioning-record:
|
|
706
|
+
post:
|
|
707
|
+
tags:
|
|
708
|
+
- Device Provisioning Record Management
|
|
709
|
+
summary: CreateProvisioningRecord
|
|
710
|
+
description: >-
|
|
711
|
+
Create a new Provisioning Record, using a valid Provisioning Record JSON objects, which does not contain "_id" or "createTime".
|
|
712
|
+
|
|
713
|
+
|
|
714
|
+
Returns the _id of the created record if successful.
|
|
715
|
+
operationId: CreateProvisioningRecord
|
|
716
|
+
parameters: []
|
|
717
|
+
requestBody:
|
|
718
|
+
description: ''
|
|
719
|
+
content:
|
|
720
|
+
application/json:
|
|
721
|
+
schema:
|
|
722
|
+
$ref: '#/components/schemas/CreateProvisioningRecordRequest'
|
|
723
|
+
required: true
|
|
724
|
+
responses:
|
|
725
|
+
'200':
|
|
726
|
+
description: OK
|
|
727
|
+
headers:
|
|
728
|
+
Content-Length:
|
|
729
|
+
content:
|
|
730
|
+
text/plain:
|
|
731
|
+
schema:
|
|
732
|
+
type: string
|
|
733
|
+
example: '36'
|
|
734
|
+
example: '36'
|
|
735
|
+
content:
|
|
736
|
+
text/plain:
|
|
737
|
+
schema:
|
|
738
|
+
type: string
|
|
739
|
+
example: cdfc1c38-5836-4264-94d2-af0be7cf51bd
|
|
740
|
+
example: cdfc1c38-5836-4264-94d2-af0be7cf51bd
|
|
741
|
+
deprecated: false
|
|
742
|
+
get:
|
|
743
|
+
tags:
|
|
744
|
+
- Device Provisioning Record Management
|
|
745
|
+
summary: RetrieveAllProvisioningRecords
|
|
746
|
+
description: >-
|
|
747
|
+
Retrieve all Provisioning Records, returning a JSON array of Provisioning Record JSON objects, each describing a full configuration.
|
|
748
|
+
|
|
749
|
+
|
|
750
|
+
There is no filtering nor limit/offset capability with this request.
|
|
751
|
+
operationId: RetrieveAllProvisioningRecords
|
|
752
|
+
parameters: []
|
|
753
|
+
responses:
|
|
754
|
+
'200':
|
|
755
|
+
description: OK
|
|
756
|
+
headers:
|
|
757
|
+
Transfer-Encoding:
|
|
758
|
+
content:
|
|
759
|
+
text/plain:
|
|
760
|
+
schema:
|
|
761
|
+
type: string
|
|
762
|
+
example: chunked
|
|
763
|
+
example: chunked
|
|
764
|
+
content:
|
|
765
|
+
application/json:
|
|
766
|
+
schema:
|
|
767
|
+
type: array
|
|
768
|
+
items:
|
|
769
|
+
$ref: '#/components/schemas/Provisioningrecord'
|
|
770
|
+
description: ''
|
|
771
|
+
deprecated: false
|
|
772
|
+
/provisioning-record/{provisioning-record-id}:
|
|
773
|
+
get:
|
|
774
|
+
tags:
|
|
775
|
+
- Device Provisioning Record Management
|
|
776
|
+
summary: RetrieveProvisioningRecordbyInternalID
|
|
777
|
+
description: Retrieve a single Provisioning Record, using the internal ID of the record. Returns a single Provisioning Record JSON object describing a full configuration.
|
|
778
|
+
operationId: RetrieveProvisioningRecordbyInternalID
|
|
779
|
+
parameters:
|
|
780
|
+
- name: provisioning-record-id
|
|
781
|
+
in: path
|
|
782
|
+
description: ''
|
|
783
|
+
required: true
|
|
784
|
+
style: simple
|
|
785
|
+
schema:
|
|
786
|
+
type: string
|
|
787
|
+
responses:
|
|
788
|
+
'200':
|
|
789
|
+
description: OK
|
|
790
|
+
headers:
|
|
791
|
+
Content-Length:
|
|
792
|
+
content:
|
|
793
|
+
text/plain:
|
|
794
|
+
schema:
|
|
795
|
+
type: string
|
|
796
|
+
example: '2012'
|
|
797
|
+
example: '2012'
|
|
798
|
+
content:
|
|
799
|
+
application/json:
|
|
800
|
+
schema:
|
|
801
|
+
$ref: '#/components/schemas/RetrieveProvisioningRecordbyInternalID'
|
|
802
|
+
deprecated: false
|
|
803
|
+
delete:
|
|
804
|
+
tags:
|
|
805
|
+
- Device Provisioning Record Management
|
|
806
|
+
summary: DeleteProvisioningRecord
|
|
807
|
+
description: >-
|
|
808
|
+
Delete a single Provisioning Record, using the internal _id value.
|
|
809
|
+
|
|
810
|
+
|
|
811
|
+
Returns no body.
|
|
812
|
+
operationId: DeleteProvisioningRecord
|
|
813
|
+
parameters:
|
|
814
|
+
- name: provisioning-record-id
|
|
815
|
+
in: path
|
|
816
|
+
description: ''
|
|
817
|
+
required: true
|
|
818
|
+
style: simple
|
|
819
|
+
schema:
|
|
820
|
+
type: string
|
|
821
|
+
responses:
|
|
822
|
+
'200':
|
|
823
|
+
description: OK
|
|
824
|
+
headers:
|
|
825
|
+
Content-Length:
|
|
826
|
+
content:
|
|
827
|
+
text/plain:
|
|
828
|
+
schema:
|
|
829
|
+
type: string
|
|
830
|
+
example: '0'
|
|
831
|
+
example: '0'
|
|
832
|
+
content: {}
|
|
833
|
+
deprecated: false
|
|
834
|
+
/provisioning-record/{prov_record_id}:
|
|
835
|
+
put:
|
|
836
|
+
tags:
|
|
837
|
+
- Device Provisioning Record Management
|
|
838
|
+
summary: ModifyProvisioningRecord
|
|
839
|
+
description: >-
|
|
840
|
+
Modify an existing provisioning record.
|
|
841
|
+
|
|
842
|
+
* You must specify the internal _id of the record to modify.
|
|
843
|
+
|
|
844
|
+
* When submitting changes, you must include the ENTIRE provisioning record, not just the changed section!
|
|
845
|
+
|
|
846
|
+
|
|
847
|
+
For example, when changing a Wi-Fi SSID on a device with voice service, you must first retrieve the entire Provisioning Record, modify the JSON with the new SSID value, and then submit the entire record to this API call.
|
|
848
|
+
operationId: ModifyProvisioningRecord
|
|
849
|
+
parameters:
|
|
850
|
+
- name: prov_record_id
|
|
851
|
+
in: path
|
|
852
|
+
description: ''
|
|
853
|
+
required: true
|
|
854
|
+
style: simple
|
|
855
|
+
schema:
|
|
856
|
+
type: string
|
|
857
|
+
requestBody:
|
|
858
|
+
description: ''
|
|
859
|
+
content:
|
|
860
|
+
application/json:
|
|
861
|
+
schema:
|
|
862
|
+
$ref: '#/components/schemas/ModifyProvisioningRecordRequest'
|
|
863
|
+
required: true
|
|
864
|
+
responses:
|
|
865
|
+
'200':
|
|
866
|
+
description: OK
|
|
867
|
+
headers:
|
|
868
|
+
Content-Length:
|
|
869
|
+
content:
|
|
870
|
+
text/plain:
|
|
871
|
+
schema:
|
|
872
|
+
type: string
|
|
873
|
+
example: '0'
|
|
874
|
+
example: '0'
|
|
875
|
+
content: {}
|
|
876
|
+
deprecated: false
|
|
877
|
+
/device-op:
|
|
878
|
+
post:
|
|
879
|
+
tags:
|
|
880
|
+
- TR-69 Device Operations
|
|
881
|
+
summary: GetParameterValues
|
|
882
|
+
description: >-
|
|
883
|
+
In addition to the operation and cpeIdentifier elements, the GetParameterValues contains an element "parameterNames" which is a JSON array of data model objects to retrieve.
|
|
884
|
+
|
|
885
|
+
|
|
886
|
+
The call returns a JSON array, expressing the sections of the device's data model as requested. See the example for details.
|
|
887
|
+
|
|
888
|
+
|
|
889
|
+
|
|
890
|
+
The call will trigger a Connection Request to the device, which times out after 15 seconds and 3 attempts.
|
|
891
|
+
|
|
892
|
+
|
|
893
|
+
|
|
894
|
+
If the request cannot be performed successfully, an appropriate HTTP status code (usually “408 Bad Request” or “408 Request Timeout”) will be returned with a detailed error message in the response body, for example:
|
|
895
|
+
|
|
896
|
+
```
|
|
897
|
+
|
|
898
|
+
{
|
|
899
|
+
"error" : "No CPE found with filter {serialNumber:CXNK0020524}!"
|
|
900
|
+
}
|
|
901
|
+
|
|
902
|
+
```
|
|
903
|
+
|
|
904
|
+
Or:
|
|
905
|
+
|
|
906
|
+
```
|
|
907
|
+
|
|
908
|
+
{
|
|
909
|
+
"error" : "Received TR-069/CWMP Fault from Device: 9005 Invalid Parameter Name"
|
|
910
|
+
}
|
|
911
|
+
|
|
912
|
+
```
|
|
913
|
+
|
|
914
|
+
Or:
|
|
915
|
+
|
|
916
|
+
```
|
|
917
|
+
|
|
918
|
+
{
|
|
919
|
+
"error" : " Internal Server ERROR (Timed out waiting for reply)"
|
|
920
|
+
}
|
|
921
|
+
|
|
922
|
+
```
|
|
923
|
+
operationId: GetParameterValues
|
|
924
|
+
parameters: []
|
|
925
|
+
requestBody:
|
|
926
|
+
description: ''
|
|
927
|
+
content:
|
|
928
|
+
application/json:
|
|
929
|
+
schema:
|
|
930
|
+
allOf:
|
|
931
|
+
- $ref: '#/components/schemas/GetParameterValuesRequest'
|
|
932
|
+
- example:
|
|
933
|
+
operation: GetParameterValues
|
|
934
|
+
cpeIdentifier:
|
|
935
|
+
serialNumber: CXNK005A77A9
|
|
936
|
+
parameterNames:
|
|
937
|
+
- InternetGatewayDevice.DeviceInfo.UpTime
|
|
938
|
+
example:
|
|
939
|
+
operation: GetParameterValues
|
|
940
|
+
cpeIdentifier:
|
|
941
|
+
serialNumber: CXNK005A77A9
|
|
942
|
+
parameterNames:
|
|
943
|
+
- InternetGatewayDevice.DeviceInfo.UpTime
|
|
944
|
+
required: true
|
|
945
|
+
responses:
|
|
946
|
+
'200':
|
|
947
|
+
description: OK
|
|
948
|
+
headers:
|
|
949
|
+
Content-Length:
|
|
950
|
+
content:
|
|
951
|
+
text/plain:
|
|
952
|
+
schema:
|
|
953
|
+
type: string
|
|
954
|
+
example: '92'
|
|
955
|
+
example: '92'
|
|
956
|
+
content:
|
|
957
|
+
application/json:
|
|
958
|
+
schema:
|
|
959
|
+
allOf:
|
|
960
|
+
- $ref: '#/components/schemas/GetParameterValues'
|
|
961
|
+
- example:
|
|
962
|
+
InternetGatewayDevice:
|
|
963
|
+
DeviceInfo:
|
|
964
|
+
UpTime: '1350121'
|
|
965
|
+
example:
|
|
966
|
+
InternetGatewayDevice:
|
|
967
|
+
DeviceInfo:
|
|
968
|
+
UpTime: '1350121'
|
|
969
|
+
deprecated: false
|
|
970
|
+
/group:
|
|
971
|
+
get:
|
|
972
|
+
tags:
|
|
973
|
+
- Device Group Management
|
|
974
|
+
summary: RetrieveAllDeviceGroups
|
|
975
|
+
description: >-
|
|
976
|
+
Retrieves a list of all Device Groups.
|
|
977
|
+
|
|
978
|
+
|
|
979
|
+
Returns a JSON array of JSON objects, each describing a Device Group.
|
|
980
|
+
operationId: RetrieveAllDeviceGroups
|
|
981
|
+
parameters: []
|
|
982
|
+
responses:
|
|
983
|
+
'200':
|
|
984
|
+
description: OK
|
|
985
|
+
headers:
|
|
986
|
+
Transfer-Encoding:
|
|
987
|
+
content:
|
|
988
|
+
text/plain:
|
|
989
|
+
schema:
|
|
990
|
+
type: string
|
|
991
|
+
example: chunked
|
|
992
|
+
example: chunked
|
|
993
|
+
content:
|
|
994
|
+
application/json:
|
|
995
|
+
schema:
|
|
996
|
+
type: array
|
|
997
|
+
items:
|
|
998
|
+
$ref: '#/components/schemas/RetrieveAllDeviceGroup'
|
|
999
|
+
description: ''
|
|
1000
|
+
example:
|
|
1001
|
+
- _id: 4a942d03-1b7c-4c7f-9771-b19f143907f5
|
|
1002
|
+
name: All 844E
|
|
1003
|
+
description: Dynamic group containing all Calix 844E devices
|
|
1004
|
+
type: dynamic
|
|
1005
|
+
- _id: e66c8389-e62e-453e-ae84-9029783937b3
|
|
1006
|
+
name: 844E PPPoE
|
|
1007
|
+
description: Group for all PPPoE-provisioned devices
|
|
1008
|
+
type: static
|
|
1009
|
+
allowInheritance: true
|
|
1010
|
+
- _id: 243d890b-9e41-473e-baa6-5196390ab062
|
|
1011
|
+
name: All GigaSpire Blast GS2020E
|
|
1012
|
+
description: ''
|
|
1013
|
+
type: dynamic
|
|
1014
|
+
- _id: ded2dd56-0d74-4c54-969a-dad4e55b1e46
|
|
1015
|
+
name: All GigaSpire Max GS2026E
|
|
1016
|
+
description: ''
|
|
1017
|
+
type: dynamic
|
|
1018
|
+
- _id: 9110ebfb-97d7-4f0f-8738-8a5b014a0a8a
|
|
1019
|
+
name: Lab Test GigaSpires
|
|
1020
|
+
description: Static group for all initial testing of new GigaSpire software
|
|
1021
|
+
type: static
|
|
1022
|
+
allowInheritance: true
|
|
1023
|
+
example:
|
|
1024
|
+
- _id: 4a942d03-1b7c-4c7f-9771-b19f143907f5
|
|
1025
|
+
name: All 844E
|
|
1026
|
+
description: Dynamic group containing all Calix 844E devices
|
|
1027
|
+
type: dynamic
|
|
1028
|
+
- _id: e66c8389-e62e-453e-ae84-9029783937b3
|
|
1029
|
+
name: 844E PPPoE
|
|
1030
|
+
description: Group for all PPPoE-provisioned devices
|
|
1031
|
+
type: static
|
|
1032
|
+
allowInheritance: true
|
|
1033
|
+
- _id: 243d890b-9e41-473e-baa6-5196390ab062
|
|
1034
|
+
name: All GigaSpire Blast GS2020E
|
|
1035
|
+
description: ''
|
|
1036
|
+
type: dynamic
|
|
1037
|
+
- _id: ded2dd56-0d74-4c54-969a-dad4e55b1e46
|
|
1038
|
+
name: All GigaSpire Max GS2026E
|
|
1039
|
+
description: ''
|
|
1040
|
+
type: dynamic
|
|
1041
|
+
- _id: 9110ebfb-97d7-4f0f-8738-8a5b014a0a8a
|
|
1042
|
+
name: Lab Test GigaSpires
|
|
1043
|
+
description: Static group for all initial testing of new GigaSpire software
|
|
1044
|
+
type: static
|
|
1045
|
+
allowInheritance: true
|
|
1046
|
+
deprecated: false
|
|
1047
|
+
/group/{group-id}:
|
|
1048
|
+
get:
|
|
1049
|
+
tags:
|
|
1050
|
+
- Device Group Management
|
|
1051
|
+
summary: RetrieveDeviceGroupbyID
|
|
1052
|
+
description: >-
|
|
1053
|
+
Retrieves a single Device Group by its internal ID.
|
|
1054
|
+
|
|
1055
|
+
|
|
1056
|
+
Returns a JSON object describing the Device Group.
|
|
1057
|
+
operationId: RetrieveDeviceGroupbyID
|
|
1058
|
+
parameters:
|
|
1059
|
+
- name: group-id
|
|
1060
|
+
in: path
|
|
1061
|
+
description: ''
|
|
1062
|
+
required: true
|
|
1063
|
+
style: simple
|
|
1064
|
+
schema:
|
|
1065
|
+
type: string
|
|
1066
|
+
responses:
|
|
1067
|
+
'200':
|
|
1068
|
+
description: OK
|
|
1069
|
+
headers:
|
|
1070
|
+
Content-Length:
|
|
1071
|
+
content:
|
|
1072
|
+
text/plain:
|
|
1073
|
+
schema:
|
|
1074
|
+
type: string
|
|
1075
|
+
example: '159'
|
|
1076
|
+
example: '159'
|
|
1077
|
+
content:
|
|
1078
|
+
application/json:
|
|
1079
|
+
schema:
|
|
1080
|
+
allOf:
|
|
1081
|
+
- $ref: '#/components/schemas/RetrieveGroupbyID'
|
|
1082
|
+
- example:
|
|
1083
|
+
_id: 9110ebfb-97d7-4f0f-8738-8a5b014a0a8a
|
|
1084
|
+
name: Lab Test GigaSpires
|
|
1085
|
+
description: ''
|
|
1086
|
+
type: static
|
|
1087
|
+
allowInheritance: true
|
|
1088
|
+
example:
|
|
1089
|
+
_id: 9110ebfb-97d7-4f0f-8738-8a5b014a0a8a
|
|
1090
|
+
name: Lab Test GigaSpires
|
|
1091
|
+
description: ''
|
|
1092
|
+
type: static
|
|
1093
|
+
allowInheritance: true
|
|
1094
|
+
deprecated: false
|
|
1095
|
+
/static-group-member:
|
|
1096
|
+
get:
|
|
1097
|
+
tags:
|
|
1098
|
+
- Device Group Management
|
|
1099
|
+
summary: RetrieveAllStaticGroupMemberships
|
|
1100
|
+
description: >-
|
|
1101
|
+
Retrieve all Static Group Membership data.
|
|
1102
|
+
|
|
1103
|
+
|
|
1104
|
+
Returns a JSON Array of Device Group Membership JSON Object records.
|
|
1105
|
+
operationId: RetrieveAllStaticGroupMemberships
|
|
1106
|
+
parameters: []
|
|
1107
|
+
responses:
|
|
1108
|
+
'200':
|
|
1109
|
+
description: OK
|
|
1110
|
+
headers:
|
|
1111
|
+
Transfer-Encoding:
|
|
1112
|
+
content:
|
|
1113
|
+
text/plain:
|
|
1114
|
+
schema:
|
|
1115
|
+
type: string
|
|
1116
|
+
example: chunked
|
|
1117
|
+
example: chunked
|
|
1118
|
+
content:
|
|
1119
|
+
application/json:
|
|
1120
|
+
schema:
|
|
1121
|
+
type: array
|
|
1122
|
+
items:
|
|
1123
|
+
$ref: '#/components/schemas/RetrieveAllStaticGroupMembership'
|
|
1124
|
+
description: ''
|
|
1125
|
+
example:
|
|
1126
|
+
- _id: 6a747bc9-d2e6-4d99-82cd-25a84057e93e
|
|
1127
|
+
groupId: e66c8389-e62e-453e-ae84-9029783937b3
|
|
1128
|
+
type: FSAN
|
|
1129
|
+
memberInfo: CXNK001D9030
|
|
1130
|
+
orgId: '12837558'
|
|
1131
|
+
deviceRecordId: 12837558-000631-CXNK001D9030
|
|
1132
|
+
createTime: 2019-04-15T15:23:57.047Z
|
|
1133
|
+
example:
|
|
1134
|
+
- _id: 6a747bc9-d2e6-4d99-82cd-25a84057e93e
|
|
1135
|
+
groupId: e66c8389-e62e-453e-ae84-9029783937b3
|
|
1136
|
+
type: FSAN
|
|
1137
|
+
memberInfo: CXNK001D9030
|
|
1138
|
+
orgId: '12837558'
|
|
1139
|
+
deviceRecordId: 12837558-000631-CXNK001D9030
|
|
1140
|
+
createTime: 2019-04-15T15:23:57.047Z
|
|
1141
|
+
deprecated: false
|
|
1142
|
+
post:
|
|
1143
|
+
tags:
|
|
1144
|
+
- Device Group Management
|
|
1145
|
+
summary: AddaDeviceorProvisioningRecordtoaStaticGroup
|
|
1146
|
+
description: >-
|
|
1147
|
+
Adds a specified device or provisioning record to a Static Group, by creating a JSON object describing the membership.
|
|
1148
|
+
|
|
1149
|
+
|
|
1150
|
+
Returns the _id of the Device Group Membership record if successful.
|
|
1151
|
+
operationId: AddaDeviceorProvisioningRecordtoaStaticGroup
|
|
1152
|
+
parameters: []
|
|
1153
|
+
requestBody:
|
|
1154
|
+
description: ''
|
|
1155
|
+
content:
|
|
1156
|
+
application/json:
|
|
1157
|
+
schema:
|
|
1158
|
+
allOf:
|
|
1159
|
+
- $ref: '#/components/schemas/AddaDeviceorProvisioningRecordtoaStaticGroupRequest'
|
|
1160
|
+
- example:
|
|
1161
|
+
groupId: '{{groupId}}'
|
|
1162
|
+
type: FSAN
|
|
1163
|
+
memberInfo: '{{fsan}}'
|
|
1164
|
+
example:
|
|
1165
|
+
groupId: '{{groupId}}'
|
|
1166
|
+
type: FSAN
|
|
1167
|
+
memberInfo: '{{fsan}}'
|
|
1168
|
+
required: true
|
|
1169
|
+
responses:
|
|
1170
|
+
'200':
|
|
1171
|
+
description: OK
|
|
1172
|
+
headers:
|
|
1173
|
+
Content-Length:
|
|
1174
|
+
content:
|
|
1175
|
+
text/plain:
|
|
1176
|
+
schema:
|
|
1177
|
+
type: string
|
|
1178
|
+
example: '36'
|
|
1179
|
+
example: '36'
|
|
1180
|
+
content:
|
|
1181
|
+
text/plain:
|
|
1182
|
+
schema:
|
|
1183
|
+
type: string
|
|
1184
|
+
example: d74d3aa2-bbb5-4af7-8365-3262ddddf0f5
|
|
1185
|
+
example: d74d3aa2-bbb5-4af7-8365-3262ddddf0f5
|
|
1186
|
+
deprecated: false
|
|
1187
|
+
delete:
|
|
1188
|
+
tags:
|
|
1189
|
+
- Device Group Management
|
|
1190
|
+
summary: RemoveadevicefromaStaticGroupbygroupIDanddevice
|
|
1191
|
+
description: >-
|
|
1192
|
+
Remove a device from a static group by specifying the group _id value and an identifier for the device (FSAN, serial number, Registration ID, or MAC address)
|
|
1193
|
+
|
|
1194
|
+
|
|
1195
|
+
Returns a count of deleted records if successful, or an empty JSON array if no devices match.
|
|
1196
|
+
operationId: RemoveadevicefromaStaticGroupbygroupIDanddevice
|
|
1197
|
+
parameters:
|
|
1198
|
+
- name: groupId
|
|
1199
|
+
in: query
|
|
1200
|
+
description: The _id value of the Static Group to remove the device from.
|
|
1201
|
+
required: true
|
|
1202
|
+
style: form
|
|
1203
|
+
explode: true
|
|
1204
|
+
schema:
|
|
1205
|
+
type: string
|
|
1206
|
+
example: '{{static-group-id}}'
|
|
1207
|
+
- name: memberInfo
|
|
1208
|
+
in: query
|
|
1209
|
+
description: >-
|
|
1210
|
+
One of: FSAN ID, Serial number, Registration ID, or MAC address.
|
|
1211
|
+
|
|
1212
|
+
Use any of these strings to select the device to remove.
|
|
1213
|
+
required: true
|
|
1214
|
+
style: form
|
|
1215
|
+
explode: true
|
|
1216
|
+
schema:
|
|
1217
|
+
type: string
|
|
1218
|
+
example: '{{device-data}}'
|
|
1219
|
+
responses:
|
|
1220
|
+
'200':
|
|
1221
|
+
description: OK
|
|
1222
|
+
headers:
|
|
1223
|
+
Content-Length:
|
|
1224
|
+
content:
|
|
1225
|
+
text/plain:
|
|
1226
|
+
schema:
|
|
1227
|
+
type: string
|
|
1228
|
+
example: '28'
|
|
1229
|
+
example: '28'
|
|
1230
|
+
content:
|
|
1231
|
+
application/json:
|
|
1232
|
+
schema:
|
|
1233
|
+
allOf:
|
|
1234
|
+
- $ref: '#/components/schemas/RemoveadevicefromaStaticGroupbygroupIDanddevice'
|
|
1235
|
+
- example:
|
|
1236
|
+
numberOfRecords: 1
|
|
1237
|
+
example:
|
|
1238
|
+
numberOfRecords: 1
|
|
1239
|
+
deprecated: false
|
|
1240
|
+
/static-group-member/{group-membership-id}:
|
|
1241
|
+
get:
|
|
1242
|
+
tags:
|
|
1243
|
+
- Device Group Management
|
|
1244
|
+
summary: RetrieveSingleStaticGroupMembershipRecord
|
|
1245
|
+
description: >-
|
|
1246
|
+
Retrieve a single Static Group Membership by internal ID.
|
|
1247
|
+
|
|
1248
|
+
|
|
1249
|
+
Returns a Device Group Membership JSON Object record.
|
|
1250
|
+
operationId: RetrieveSingleStaticGroupMembershipRecord
|
|
1251
|
+
parameters:
|
|
1252
|
+
- name: group-membership-id
|
|
1253
|
+
in: path
|
|
1254
|
+
description: ''
|
|
1255
|
+
required: true
|
|
1256
|
+
style: simple
|
|
1257
|
+
schema:
|
|
1258
|
+
type: string
|
|
1259
|
+
responses:
|
|
1260
|
+
'200':
|
|
1261
|
+
description: OK
|
|
1262
|
+
headers:
|
|
1263
|
+
Content-Length:
|
|
1264
|
+
content:
|
|
1265
|
+
text/plain:
|
|
1266
|
+
schema:
|
|
1267
|
+
type: string
|
|
1268
|
+
example: '281'
|
|
1269
|
+
example: '281'
|
|
1270
|
+
content:
|
|
1271
|
+
application/json:
|
|
1272
|
+
schema:
|
|
1273
|
+
allOf:
|
|
1274
|
+
- $ref: '#/components/schemas/RetrieveAllStaticGroupMembership'
|
|
1275
|
+
- example:
|
|
1276
|
+
_id: d74d3aa2-bbb5-4af7-8365-3262ddddf0f5
|
|
1277
|
+
groupId: e66c8389-e62e-453e-ae84-9029783937b3
|
|
1278
|
+
type: FSAN
|
|
1279
|
+
memberInfo: CXNK001D9031
|
|
1280
|
+
orgId: '12837558'
|
|
1281
|
+
deviceRecordId: 12837558-000631-CXNK001D9031
|
|
1282
|
+
createTime: 2019-05-22T15:39:07.329Z
|
|
1283
|
+
example:
|
|
1284
|
+
_id: d74d3aa2-bbb5-4af7-8365-3262ddddf0f5
|
|
1285
|
+
groupId: e66c8389-e62e-453e-ae84-9029783937b3
|
|
1286
|
+
type: FSAN
|
|
1287
|
+
memberInfo: CXNK001D9031
|
|
1288
|
+
orgId: '12837558'
|
|
1289
|
+
deviceRecordId: 12837558-000631-CXNK001D9031
|
|
1290
|
+
createTime: 2019-05-22T15:39:07.329Z
|
|
1291
|
+
deprecated: false
|
|
1292
|
+
/static-group-member/{membership-id}:
|
|
1293
|
+
delete:
|
|
1294
|
+
tags:
|
|
1295
|
+
- Device Group Management
|
|
1296
|
+
summary: RemoveadevicefromaStaticGroupbymembershipID
|
|
1297
|
+
description: >-
|
|
1298
|
+
Remove a device from a static group by specifying the Membership Record _id value.
|
|
1299
|
+
|
|
1300
|
+
|
|
1301
|
+
Returns no body.
|
|
1302
|
+
operationId: RemoveadevicefromaStaticGroupbymembershipID
|
|
1303
|
+
parameters:
|
|
1304
|
+
- name: membership-id
|
|
1305
|
+
in: path
|
|
1306
|
+
description: ''
|
|
1307
|
+
required: true
|
|
1308
|
+
style: simple
|
|
1309
|
+
schema:
|
|
1310
|
+
type: string
|
|
1311
|
+
responses:
|
|
1312
|
+
'200':
|
|
1313
|
+
description: ''
|
|
1314
|
+
headers: {}
|
|
1315
|
+
content: {}
|
|
1316
|
+
deprecated: false
|
|
1317
|
+
components:
|
|
1318
|
+
schemas:
|
|
1319
|
+
RetrieveAllDevice:
|
|
1320
|
+
title: RetrieveAllDevice
|
|
1321
|
+
required:
|
|
1322
|
+
- _id
|
|
1323
|
+
- manufacturerOUI
|
|
1324
|
+
- serialNumber
|
|
1325
|
+
- createTime
|
|
1326
|
+
type: object
|
|
1327
|
+
properties:
|
|
1328
|
+
_id:
|
|
1329
|
+
type: string
|
|
1330
|
+
manufacturer:
|
|
1331
|
+
type: string
|
|
1332
|
+
manufacturerOUI:
|
|
1333
|
+
type: string
|
|
1334
|
+
productClass:
|
|
1335
|
+
type: string
|
|
1336
|
+
modelName:
|
|
1337
|
+
type: string
|
|
1338
|
+
hardwareVersion:
|
|
1339
|
+
type: string
|
|
1340
|
+
softwareVersion:
|
|
1341
|
+
type: string
|
|
1342
|
+
serialNumber:
|
|
1343
|
+
type: string
|
|
1344
|
+
registrationId:
|
|
1345
|
+
type: string
|
|
1346
|
+
macAddress:
|
|
1347
|
+
type: string
|
|
1348
|
+
periodicInformInterval:
|
|
1349
|
+
type: integer
|
|
1350
|
+
format: int32
|
|
1351
|
+
dataModelName:
|
|
1352
|
+
type: string
|
|
1353
|
+
timezoneOffset:
|
|
1354
|
+
type: string
|
|
1355
|
+
ipAddress:
|
|
1356
|
+
type: string
|
|
1357
|
+
changeCounter:
|
|
1358
|
+
type: integer
|
|
1359
|
+
format: int32
|
|
1360
|
+
defaultGateway:
|
|
1361
|
+
type: string
|
|
1362
|
+
subnetMask:
|
|
1363
|
+
type: string
|
|
1364
|
+
wapGatewaySn:
|
|
1365
|
+
type: string
|
|
1366
|
+
provRecordStatus:
|
|
1367
|
+
type: string
|
|
1368
|
+
opMode:
|
|
1369
|
+
type: string
|
|
1370
|
+
wanAccessType:
|
|
1371
|
+
type: string
|
|
1372
|
+
stunEnabled:
|
|
1373
|
+
type: boolean
|
|
1374
|
+
udpConnectionRequestAddr:
|
|
1375
|
+
type: string
|
|
1376
|
+
lastInformTime:
|
|
1377
|
+
type: string
|
|
1378
|
+
createTime:
|
|
1379
|
+
type: string
|
|
1380
|
+
hardwareSerialNumber:
|
|
1381
|
+
type: string
|
|
1382
|
+
opRole:
|
|
1383
|
+
type: string
|
|
1384
|
+
example:
|
|
1385
|
+
_id: 12837558-000631-CXNK001D9030
|
|
1386
|
+
manufacturer: Calix
|
|
1387
|
+
manufacturerOUI: '000631'
|
|
1388
|
+
productClass: ENT
|
|
1389
|
+
modelName: '844E-1'
|
|
1390
|
+
hardwareVersion: '3000219601'
|
|
1391
|
+
softwareVersion: 12.2.8.1.11
|
|
1392
|
+
serialNumber: CXNK001D9030
|
|
1393
|
+
registrationId: ''
|
|
1394
|
+
macAddress: 00:06:31:ed:f7:b0
|
|
1395
|
+
periodicInformInterval: 86400
|
|
1396
|
+
dataModelName: tr098
|
|
1397
|
+
timezoneOffset: -08:00
|
|
1398
|
+
ipAddress: 192.168.92.2
|
|
1399
|
+
changeCounter: 24
|
|
1400
|
+
defaultGateway: 192.168.92.1
|
|
1401
|
+
subnetMask: 255.255.255.0
|
|
1402
|
+
wapGatewaySn: FTX133981PW
|
|
1403
|
+
provRecordStatus: Succeeded
|
|
1404
|
+
opMode: RG
|
|
1405
|
+
wanAccessType: CopperEthernet
|
|
1406
|
+
stunEnabled: true
|
|
1407
|
+
udpConnectionRequestAddr: 99.111.154.74:30005
|
|
1408
|
+
lastInformTime: 2019-04-17T05:40:38.904Z
|
|
1409
|
+
createTime: 2019-03-20T13:36:00.657Z
|
|
1410
|
+
hardwareSerialNumber: '261503000429'
|
|
1411
|
+
RetrieveDeviceByID:
|
|
1412
|
+
title: RetrieveDeviceByID
|
|
1413
|
+
required:
|
|
1414
|
+
- _id
|
|
1415
|
+
- manufacturer
|
|
1416
|
+
- manufacturerOUI
|
|
1417
|
+
- productClass
|
|
1418
|
+
- modelName
|
|
1419
|
+
- hardwareVersion
|
|
1420
|
+
- softwareVersion
|
|
1421
|
+
- serialNumber
|
|
1422
|
+
- registrationId
|
|
1423
|
+
- macAddress
|
|
1424
|
+
- periodicInformInterval
|
|
1425
|
+
- dataModelName
|
|
1426
|
+
- timezoneOffset
|
|
1427
|
+
- ipAddress
|
|
1428
|
+
- changeCounter
|
|
1429
|
+
- defaultGateway
|
|
1430
|
+
- subnetMask
|
|
1431
|
+
- wapGatewaySn
|
|
1432
|
+
- provRecordStatus
|
|
1433
|
+
- opMode
|
|
1434
|
+
- wanAccessType
|
|
1435
|
+
- stunEnabled
|
|
1436
|
+
- udpConnectionRequestAddr
|
|
1437
|
+
- lastInformTime
|
|
1438
|
+
- createTime
|
|
1439
|
+
- hardwareSerialNumber
|
|
1440
|
+
type: object
|
|
1441
|
+
properties:
|
|
1442
|
+
_id:
|
|
1443
|
+
type: string
|
|
1444
|
+
manufacturer:
|
|
1445
|
+
type: string
|
|
1446
|
+
manufacturerOUI:
|
|
1447
|
+
type: string
|
|
1448
|
+
productClass:
|
|
1449
|
+
type: string
|
|
1450
|
+
modelName:
|
|
1451
|
+
type: string
|
|
1452
|
+
hardwareVersion:
|
|
1453
|
+
type: string
|
|
1454
|
+
softwareVersion:
|
|
1455
|
+
type: string
|
|
1456
|
+
serialNumber:
|
|
1457
|
+
type: string
|
|
1458
|
+
registrationId:
|
|
1459
|
+
type: string
|
|
1460
|
+
macAddress:
|
|
1461
|
+
type: string
|
|
1462
|
+
periodicInformInterval:
|
|
1463
|
+
type: integer
|
|
1464
|
+
format: int32
|
|
1465
|
+
dataModelName:
|
|
1466
|
+
type: string
|
|
1467
|
+
timezoneOffset:
|
|
1468
|
+
type: string
|
|
1469
|
+
ipAddress:
|
|
1470
|
+
type: string
|
|
1471
|
+
changeCounter:
|
|
1472
|
+
type: integer
|
|
1473
|
+
format: int32
|
|
1474
|
+
defaultGateway:
|
|
1475
|
+
type: string
|
|
1476
|
+
subnetMask:
|
|
1477
|
+
type: string
|
|
1478
|
+
wapGatewaySn:
|
|
1479
|
+
type: string
|
|
1480
|
+
provRecordStatus:
|
|
1481
|
+
type: string
|
|
1482
|
+
opMode:
|
|
1483
|
+
type: string
|
|
1484
|
+
wanAccessType:
|
|
1485
|
+
type: string
|
|
1486
|
+
stunEnabled:
|
|
1487
|
+
type: boolean
|
|
1488
|
+
udpConnectionRequestAddr:
|
|
1489
|
+
type: string
|
|
1490
|
+
lastInformTime:
|
|
1491
|
+
type: string
|
|
1492
|
+
createTime:
|
|
1493
|
+
type: string
|
|
1494
|
+
hardwareSerialNumber:
|
|
1495
|
+
type: string
|
|
1496
|
+
example:
|
|
1497
|
+
_id: 12837558-000631-CXNK001D9030
|
|
1498
|
+
manufacturer: Calix
|
|
1499
|
+
manufacturerOUI: '000631'
|
|
1500
|
+
productClass: ENT
|
|
1501
|
+
modelName: '844E-1'
|
|
1502
|
+
hardwareVersion: '3000219601'
|
|
1503
|
+
softwareVersion: 12.2.8.1.11
|
|
1504
|
+
serialNumber: CXNK001D9030
|
|
1505
|
+
registrationId: ''
|
|
1506
|
+
macAddress: 00:06:31:ed:f7:b0
|
|
1507
|
+
periodicInformInterval: 86400
|
|
1508
|
+
dataModelName: tr098
|
|
1509
|
+
timezoneOffset: -08:00
|
|
1510
|
+
ipAddress: 192.168.92.2
|
|
1511
|
+
changeCounter: 24
|
|
1512
|
+
defaultGateway: 192.168.92.1
|
|
1513
|
+
subnetMask: 255.255.255.0
|
|
1514
|
+
wapGatewaySn: FTX133981PW
|
|
1515
|
+
provRecordStatus: Succeeded
|
|
1516
|
+
opMode: RG
|
|
1517
|
+
wanAccessType: CopperEthernet
|
|
1518
|
+
stunEnabled: true
|
|
1519
|
+
udpConnectionRequestAddr: 99.111.154.74:30005
|
|
1520
|
+
lastInformTime: 2019-04-17T05:40:38.904Z
|
|
1521
|
+
createTime: 2019-03-20T13:36:00.657Z
|
|
1522
|
+
hardwareSerialNumber: '261503000429'
|
|
1523
|
+
RetrieveDeviceBySerialNumber:
|
|
1524
|
+
title: RetrieveDeviceBySerialNumber
|
|
1525
|
+
required:
|
|
1526
|
+
- _id
|
|
1527
|
+
- manufacturer
|
|
1528
|
+
- manufacturerOUI
|
|
1529
|
+
- productClass
|
|
1530
|
+
- modelName
|
|
1531
|
+
- hardwareVersion
|
|
1532
|
+
- softwareVersion
|
|
1533
|
+
- serialNumber
|
|
1534
|
+
- registrationId
|
|
1535
|
+
- macAddress
|
|
1536
|
+
- periodicInformInterval
|
|
1537
|
+
- dataModelName
|
|
1538
|
+
- timezoneOffset
|
|
1539
|
+
- ipAddress
|
|
1540
|
+
- changeCounter
|
|
1541
|
+
- defaultGateway
|
|
1542
|
+
- subnetMask
|
|
1543
|
+
- wapGatewaySn
|
|
1544
|
+
- provRecordStatus
|
|
1545
|
+
- opMode
|
|
1546
|
+
- wanAccessType
|
|
1547
|
+
- stunEnabled
|
|
1548
|
+
- udpConnectionRequestAddr
|
|
1549
|
+
- lastInformTime
|
|
1550
|
+
- createTime
|
|
1551
|
+
- hardwareSerialNumber
|
|
1552
|
+
type: object
|
|
1553
|
+
properties:
|
|
1554
|
+
_id:
|
|
1555
|
+
type: string
|
|
1556
|
+
manufacturer:
|
|
1557
|
+
type: string
|
|
1558
|
+
manufacturerOUI:
|
|
1559
|
+
type: string
|
|
1560
|
+
productClass:
|
|
1561
|
+
type: string
|
|
1562
|
+
modelName:
|
|
1563
|
+
type: string
|
|
1564
|
+
hardwareVersion:
|
|
1565
|
+
type: string
|
|
1566
|
+
softwareVersion:
|
|
1567
|
+
type: string
|
|
1568
|
+
serialNumber:
|
|
1569
|
+
type: string
|
|
1570
|
+
registrationId:
|
|
1571
|
+
type: string
|
|
1572
|
+
macAddress:
|
|
1573
|
+
type: string
|
|
1574
|
+
periodicInformInterval:
|
|
1575
|
+
type: integer
|
|
1576
|
+
format: int32
|
|
1577
|
+
dataModelName:
|
|
1578
|
+
type: string
|
|
1579
|
+
timezoneOffset:
|
|
1580
|
+
type: string
|
|
1581
|
+
ipAddress:
|
|
1582
|
+
type: string
|
|
1583
|
+
changeCounter:
|
|
1584
|
+
type: integer
|
|
1585
|
+
format: int32
|
|
1586
|
+
defaultGateway:
|
|
1587
|
+
type: string
|
|
1588
|
+
subnetMask:
|
|
1589
|
+
type: string
|
|
1590
|
+
wapGatewaySn:
|
|
1591
|
+
type: string
|
|
1592
|
+
provRecordStatus:
|
|
1593
|
+
type: string
|
|
1594
|
+
opMode:
|
|
1595
|
+
type: string
|
|
1596
|
+
wanAccessType:
|
|
1597
|
+
type: string
|
|
1598
|
+
stunEnabled:
|
|
1599
|
+
type: boolean
|
|
1600
|
+
udpConnectionRequestAddr:
|
|
1601
|
+
type: string
|
|
1602
|
+
lastInformTime:
|
|
1603
|
+
type: string
|
|
1604
|
+
createTime:
|
|
1605
|
+
type: string
|
|
1606
|
+
hardwareSerialNumber:
|
|
1607
|
+
type: string
|
|
1608
|
+
example:
|
|
1609
|
+
_id: 12837558-000631-CXNK001D9030
|
|
1610
|
+
manufacturer: Calix
|
|
1611
|
+
manufacturerOUI: '000631'
|
|
1612
|
+
productClass: ENT
|
|
1613
|
+
modelName: '844E-1'
|
|
1614
|
+
hardwareVersion: '3000219601'
|
|
1615
|
+
softwareVersion: 12.2.8.1.11
|
|
1616
|
+
serialNumber: CXNK001D9030
|
|
1617
|
+
registrationId: ''
|
|
1618
|
+
macAddress: 00:06:31:ed:f7:b0
|
|
1619
|
+
periodicInformInterval: 86400
|
|
1620
|
+
dataModelName: tr098
|
|
1621
|
+
timezoneOffset: -08:00
|
|
1622
|
+
ipAddress: 192.168.92.2
|
|
1623
|
+
changeCounter: 24
|
|
1624
|
+
defaultGateway: 192.168.92.1
|
|
1625
|
+
subnetMask: 255.255.255.0
|
|
1626
|
+
wapGatewaySn: FTX133981PW
|
|
1627
|
+
provRecordStatus: Succeeded
|
|
1628
|
+
opMode: RG
|
|
1629
|
+
wanAccessType: CopperEthernet
|
|
1630
|
+
stunEnabled: true
|
|
1631
|
+
udpConnectionRequestAddr: 99.111.154.74:30005
|
|
1632
|
+
lastInformTime: 2019-04-17T05:40:38.904Z
|
|
1633
|
+
createTime: 2019-03-20T13:36:00.657Z
|
|
1634
|
+
hardwareSerialNumber: '261503000429'
|
|
1635
|
+
RetrieveDeviceByMACAddress:
|
|
1636
|
+
title: RetrieveDeviceByMACAddress
|
|
1637
|
+
required:
|
|
1638
|
+
- _id
|
|
1639
|
+
- manufacturer
|
|
1640
|
+
- manufacturerOUI
|
|
1641
|
+
- productClass
|
|
1642
|
+
- modelName
|
|
1643
|
+
- hardwareVersion
|
|
1644
|
+
- softwareVersion
|
|
1645
|
+
- serialNumber
|
|
1646
|
+
- registrationId
|
|
1647
|
+
- macAddress
|
|
1648
|
+
- periodicInformInterval
|
|
1649
|
+
- dataModelName
|
|
1650
|
+
- timezoneOffset
|
|
1651
|
+
- ipAddress
|
|
1652
|
+
- changeCounter
|
|
1653
|
+
- defaultGateway
|
|
1654
|
+
- subnetMask
|
|
1655
|
+
- wapGatewaySn
|
|
1656
|
+
- provRecordStatus
|
|
1657
|
+
- opMode
|
|
1658
|
+
- wanAccessType
|
|
1659
|
+
- stunEnabled
|
|
1660
|
+
- udpConnectionRequestAddr
|
|
1661
|
+
- lastInformTime
|
|
1662
|
+
- createTime
|
|
1663
|
+
- hardwareSerialNumber
|
|
1664
|
+
type: object
|
|
1665
|
+
properties:
|
|
1666
|
+
_id:
|
|
1667
|
+
type: string
|
|
1668
|
+
manufacturer:
|
|
1669
|
+
type: string
|
|
1670
|
+
manufacturerOUI:
|
|
1671
|
+
type: string
|
|
1672
|
+
productClass:
|
|
1673
|
+
type: string
|
|
1674
|
+
modelName:
|
|
1675
|
+
type: string
|
|
1676
|
+
hardwareVersion:
|
|
1677
|
+
type: string
|
|
1678
|
+
softwareVersion:
|
|
1679
|
+
type: string
|
|
1680
|
+
serialNumber:
|
|
1681
|
+
type: string
|
|
1682
|
+
registrationId:
|
|
1683
|
+
type: string
|
|
1684
|
+
macAddress:
|
|
1685
|
+
type: string
|
|
1686
|
+
periodicInformInterval:
|
|
1687
|
+
type: integer
|
|
1688
|
+
format: int32
|
|
1689
|
+
dataModelName:
|
|
1690
|
+
type: string
|
|
1691
|
+
timezoneOffset:
|
|
1692
|
+
type: string
|
|
1693
|
+
ipAddress:
|
|
1694
|
+
type: string
|
|
1695
|
+
changeCounter:
|
|
1696
|
+
type: integer
|
|
1697
|
+
format: int32
|
|
1698
|
+
defaultGateway:
|
|
1699
|
+
type: string
|
|
1700
|
+
subnetMask:
|
|
1701
|
+
type: string
|
|
1702
|
+
wapGatewaySn:
|
|
1703
|
+
type: string
|
|
1704
|
+
provRecordStatus:
|
|
1705
|
+
type: string
|
|
1706
|
+
opMode:
|
|
1707
|
+
type: string
|
|
1708
|
+
wanAccessType:
|
|
1709
|
+
type: string
|
|
1710
|
+
stunEnabled:
|
|
1711
|
+
type: boolean
|
|
1712
|
+
udpConnectionRequestAddr:
|
|
1713
|
+
type: string
|
|
1714
|
+
lastInformTime:
|
|
1715
|
+
type: string
|
|
1716
|
+
createTime:
|
|
1717
|
+
type: string
|
|
1718
|
+
hardwareSerialNumber:
|
|
1719
|
+
type: string
|
|
1720
|
+
example:
|
|
1721
|
+
_id: 12837558-000631-CXNK001D9030
|
|
1722
|
+
manufacturer: Calix
|
|
1723
|
+
manufacturerOUI: '000631'
|
|
1724
|
+
productClass: ENT
|
|
1725
|
+
modelName: '844E-1'
|
|
1726
|
+
hardwareVersion: '3000219601'
|
|
1727
|
+
softwareVersion: 12.2.8.1.11
|
|
1728
|
+
serialNumber: CXNK001D9030
|
|
1729
|
+
registrationId: ''
|
|
1730
|
+
macAddress: 00:06:31:ed:f7:b0
|
|
1731
|
+
periodicInformInterval: 86400
|
|
1732
|
+
dataModelName: tr098
|
|
1733
|
+
timezoneOffset: -08:00
|
|
1734
|
+
ipAddress: 192.168.92.2
|
|
1735
|
+
changeCounter: 24
|
|
1736
|
+
defaultGateway: 192.168.92.1
|
|
1737
|
+
subnetMask: 255.255.255.0
|
|
1738
|
+
wapGatewaySn: FTX133981PW
|
|
1739
|
+
provRecordStatus: Succeeded
|
|
1740
|
+
opMode: RG
|
|
1741
|
+
wanAccessType: CopperEthernet
|
|
1742
|
+
stunEnabled: true
|
|
1743
|
+
udpConnectionRequestAddr: 99.111.154.74:30005
|
|
1744
|
+
lastInformTime: 2019-04-17T05:40:38.904Z
|
|
1745
|
+
createTime: 2019-03-20T13:36:00.657Z
|
|
1746
|
+
hardwareSerialNumber: '261503000429'
|
|
1747
|
+
RetrieveDeviceByIPAddress:
|
|
1748
|
+
title: RetrieveDeviceByIPAddress
|
|
1749
|
+
required:
|
|
1750
|
+
- _id
|
|
1751
|
+
- manufacturer
|
|
1752
|
+
- manufacturerOUI
|
|
1753
|
+
- productClass
|
|
1754
|
+
- modelName
|
|
1755
|
+
- hardwareVersion
|
|
1756
|
+
- softwareVersion
|
|
1757
|
+
- serialNumber
|
|
1758
|
+
- registrationId
|
|
1759
|
+
- macAddress
|
|
1760
|
+
- periodicInformInterval
|
|
1761
|
+
- dataModelName
|
|
1762
|
+
- timezoneOffset
|
|
1763
|
+
- ipAddress
|
|
1764
|
+
- changeCounter
|
|
1765
|
+
- defaultGateway
|
|
1766
|
+
- subnetMask
|
|
1767
|
+
- wapGatewaySn
|
|
1768
|
+
- provRecordStatus
|
|
1769
|
+
- opMode
|
|
1770
|
+
- wanAccessType
|
|
1771
|
+
- stunEnabled
|
|
1772
|
+
- udpConnectionRequestAddr
|
|
1773
|
+
- lastInformTime
|
|
1774
|
+
- createTime
|
|
1775
|
+
- hardwareSerialNumber
|
|
1776
|
+
type: object
|
|
1777
|
+
properties:
|
|
1778
|
+
_id:
|
|
1779
|
+
type: string
|
|
1780
|
+
manufacturer:
|
|
1781
|
+
type: string
|
|
1782
|
+
manufacturerOUI:
|
|
1783
|
+
type: string
|
|
1784
|
+
productClass:
|
|
1785
|
+
type: string
|
|
1786
|
+
modelName:
|
|
1787
|
+
type: string
|
|
1788
|
+
hardwareVersion:
|
|
1789
|
+
type: string
|
|
1790
|
+
softwareVersion:
|
|
1791
|
+
type: string
|
|
1792
|
+
serialNumber:
|
|
1793
|
+
type: string
|
|
1794
|
+
registrationId:
|
|
1795
|
+
type: string
|
|
1796
|
+
macAddress:
|
|
1797
|
+
type: string
|
|
1798
|
+
periodicInformInterval:
|
|
1799
|
+
type: integer
|
|
1800
|
+
format: int32
|
|
1801
|
+
dataModelName:
|
|
1802
|
+
type: string
|
|
1803
|
+
timezoneOffset:
|
|
1804
|
+
type: string
|
|
1805
|
+
ipAddress:
|
|
1806
|
+
type: string
|
|
1807
|
+
changeCounter:
|
|
1808
|
+
type: integer
|
|
1809
|
+
format: int32
|
|
1810
|
+
defaultGateway:
|
|
1811
|
+
type: string
|
|
1812
|
+
subnetMask:
|
|
1813
|
+
type: string
|
|
1814
|
+
wapGatewaySn:
|
|
1815
|
+
type: string
|
|
1816
|
+
provRecordStatus:
|
|
1817
|
+
type: string
|
|
1818
|
+
opMode:
|
|
1819
|
+
type: string
|
|
1820
|
+
wanAccessType:
|
|
1821
|
+
type: string
|
|
1822
|
+
stunEnabled:
|
|
1823
|
+
type: boolean
|
|
1824
|
+
udpConnectionRequestAddr:
|
|
1825
|
+
type: string
|
|
1826
|
+
lastInformTime:
|
|
1827
|
+
type: string
|
|
1828
|
+
createTime:
|
|
1829
|
+
type: string
|
|
1830
|
+
hardwareSerialNumber:
|
|
1831
|
+
type: string
|
|
1832
|
+
example:
|
|
1833
|
+
_id: 12837558-000631-CXNK001D9030
|
|
1834
|
+
manufacturer: Calix
|
|
1835
|
+
manufacturerOUI: '000631'
|
|
1836
|
+
productClass: ENT
|
|
1837
|
+
modelName: '844E-1'
|
|
1838
|
+
hardwareVersion: '3000219601'
|
|
1839
|
+
softwareVersion: 12.2.8.1.11
|
|
1840
|
+
serialNumber: CXNK001D9030
|
|
1841
|
+
registrationId: ''
|
|
1842
|
+
macAddress: 00:06:31:ed:f7:b0
|
|
1843
|
+
periodicInformInterval: 86400
|
|
1844
|
+
dataModelName: tr098
|
|
1845
|
+
timezoneOffset: -08:00
|
|
1846
|
+
ipAddress: 192.168.92.2
|
|
1847
|
+
changeCounter: 24
|
|
1848
|
+
defaultGateway: 192.168.92.1
|
|
1849
|
+
subnetMask: 255.255.255.0
|
|
1850
|
+
wapGatewaySn: FTX133981PW
|
|
1851
|
+
provRecordStatus: Succeeded
|
|
1852
|
+
opMode: RG
|
|
1853
|
+
wanAccessType: CopperEthernet
|
|
1854
|
+
stunEnabled: true
|
|
1855
|
+
udpConnectionRequestAddr: 99.111.154.74:30005
|
|
1856
|
+
lastInformTime: 2019-04-17T05:40:38.904Z
|
|
1857
|
+
createTime: 2019-03-20T13:36:00.657Z
|
|
1858
|
+
hardwareSerialNumber: '261503000429'
|
|
1859
|
+
CreateSubscriberRequest:
|
|
1860
|
+
title: CreateSubscriberRequest
|
|
1861
|
+
required:
|
|
1862
|
+
- customId
|
|
1863
|
+
- name
|
|
1864
|
+
- locations
|
|
1865
|
+
type: object
|
|
1866
|
+
properties:
|
|
1867
|
+
customId:
|
|
1868
|
+
type: string
|
|
1869
|
+
name:
|
|
1870
|
+
type: string
|
|
1871
|
+
locations:
|
|
1872
|
+
type: array
|
|
1873
|
+
items:
|
|
1874
|
+
$ref: '#/components/schemas/Location'
|
|
1875
|
+
description: ''
|
|
1876
|
+
example:
|
|
1877
|
+
customId: '67890'
|
|
1878
|
+
name: Test user
|
|
1879
|
+
locations:
|
|
1880
|
+
- address:
|
|
1881
|
+
streetLine1: 123 Oak St
|
|
1882
|
+
city: Anytown
|
|
1883
|
+
state: ZZ
|
|
1884
|
+
zip: '00000'
|
|
1885
|
+
country: USA
|
|
1886
|
+
contacts:
|
|
1887
|
+
- phone: 919-123-4567
|
|
1888
|
+
email: some@user.org
|
|
1889
|
+
devices:
|
|
1890
|
+
- CXNK00001234
|
|
1891
|
+
Location:
|
|
1892
|
+
title: Location
|
|
1893
|
+
required:
|
|
1894
|
+
- address
|
|
1895
|
+
- contacts
|
|
1896
|
+
- devices
|
|
1897
|
+
type: object
|
|
1898
|
+
properties:
|
|
1899
|
+
address:
|
|
1900
|
+
allOf:
|
|
1901
|
+
- $ref: '#/components/schemas/Address'
|
|
1902
|
+
- example:
|
|
1903
|
+
streetLine1: 123 Oak St
|
|
1904
|
+
city: Anytown
|
|
1905
|
+
state: ZZ
|
|
1906
|
+
zip: '00000'
|
|
1907
|
+
country: USA
|
|
1908
|
+
contacts:
|
|
1909
|
+
type: array
|
|
1910
|
+
items:
|
|
1911
|
+
$ref: '#/components/schemas/Contact'
|
|
1912
|
+
description: ''
|
|
1913
|
+
devices:
|
|
1914
|
+
type: array
|
|
1915
|
+
items:
|
|
1916
|
+
type: string
|
|
1917
|
+
description: ''
|
|
1918
|
+
example:
|
|
1919
|
+
address:
|
|
1920
|
+
streetLine1: 123 Oak St
|
|
1921
|
+
city: Anytown
|
|
1922
|
+
state: ZZ
|
|
1923
|
+
zip: '00000'
|
|
1924
|
+
country: USA
|
|
1925
|
+
contacts:
|
|
1926
|
+
- phone: 919-123-4567
|
|
1927
|
+
email: some@user.org
|
|
1928
|
+
devices:
|
|
1929
|
+
- CXNK00001234
|
|
1930
|
+
Address:
|
|
1931
|
+
title: Address
|
|
1932
|
+
required:
|
|
1933
|
+
- streetLine1
|
|
1934
|
+
- city
|
|
1935
|
+
- state
|
|
1936
|
+
- zip
|
|
1937
|
+
- country
|
|
1938
|
+
type: object
|
|
1939
|
+
properties:
|
|
1940
|
+
streetLine1:
|
|
1941
|
+
type: string
|
|
1942
|
+
city:
|
|
1943
|
+
type: string
|
|
1944
|
+
state:
|
|
1945
|
+
type: string
|
|
1946
|
+
zip:
|
|
1947
|
+
type: string
|
|
1948
|
+
country:
|
|
1949
|
+
type: string
|
|
1950
|
+
example:
|
|
1951
|
+
streetLine1: 123 Oak St
|
|
1952
|
+
city: Anytown
|
|
1953
|
+
state: ZZ
|
|
1954
|
+
zip: '00000'
|
|
1955
|
+
country: USA
|
|
1956
|
+
Contact:
|
|
1957
|
+
title: Contact
|
|
1958
|
+
required:
|
|
1959
|
+
- phone
|
|
1960
|
+
- email
|
|
1961
|
+
type: object
|
|
1962
|
+
properties:
|
|
1963
|
+
phone:
|
|
1964
|
+
type: string
|
|
1965
|
+
email:
|
|
1966
|
+
type: string
|
|
1967
|
+
example:
|
|
1968
|
+
phone: 919-123-4567
|
|
1969
|
+
email: some@user.org
|
|
1970
|
+
RetrieveAllSubscriber:
|
|
1971
|
+
title: RetrieveAllSubscriber
|
|
1972
|
+
required:
|
|
1973
|
+
- _id
|
|
1974
|
+
- customId
|
|
1975
|
+
- name
|
|
1976
|
+
- locations
|
|
1977
|
+
type: object
|
|
1978
|
+
properties:
|
|
1979
|
+
_id:
|
|
1980
|
+
type: string
|
|
1981
|
+
customId:
|
|
1982
|
+
type: string
|
|
1983
|
+
name:
|
|
1984
|
+
type: string
|
|
1985
|
+
locations:
|
|
1986
|
+
type: array
|
|
1987
|
+
items:
|
|
1988
|
+
$ref: '#/components/schemas/Location'
|
|
1989
|
+
description: ''
|
|
1990
|
+
example:
|
|
1991
|
+
_id: 7317b27e-528f-4c40-83bc-6d8a46edd0a3
|
|
1992
|
+
customId: '67890'
|
|
1993
|
+
name: Test user
|
|
1994
|
+
locations:
|
|
1995
|
+
- address:
|
|
1996
|
+
streetLine1: 123 Oak St
|
|
1997
|
+
city: Anytown
|
|
1998
|
+
state: ZZ
|
|
1999
|
+
zip: '00000'
|
|
2000
|
+
country: USA
|
|
2001
|
+
contacts:
|
|
2002
|
+
- phone: 919-123-4567
|
|
2003
|
+
email: some@user.org
|
|
2004
|
+
devices:
|
|
2005
|
+
- CXNK00001234
|
|
2006
|
+
RetrieveSubscriberbyInternalID:
|
|
2007
|
+
title: RetrieveSubscriberbyInternalID
|
|
2008
|
+
required:
|
|
2009
|
+
- _id
|
|
2010
|
+
- customId
|
|
2011
|
+
- name
|
|
2012
|
+
- locations
|
|
2013
|
+
type: object
|
|
2014
|
+
properties:
|
|
2015
|
+
_id:
|
|
2016
|
+
type: string
|
|
2017
|
+
customId:
|
|
2018
|
+
type: string
|
|
2019
|
+
name:
|
|
2020
|
+
type: string
|
|
2021
|
+
locations:
|
|
2022
|
+
type: array
|
|
2023
|
+
items:
|
|
2024
|
+
$ref: '#/components/schemas/Location'
|
|
2025
|
+
description: ''
|
|
2026
|
+
example:
|
|
2027
|
+
_id: 7317b27e-528f-4c40-83bc-6d8a46edd0a3
|
|
2028
|
+
customId: '67890'
|
|
2029
|
+
name: Test user
|
|
2030
|
+
locations:
|
|
2031
|
+
- address:
|
|
2032
|
+
streetLine1: 123 Oak St
|
|
2033
|
+
city: Anytown
|
|
2034
|
+
state: ZZ
|
|
2035
|
+
zip: '00000'
|
|
2036
|
+
country: USA
|
|
2037
|
+
contacts:
|
|
2038
|
+
- phone: 919-123-4567
|
|
2039
|
+
email: some@user.org
|
|
2040
|
+
devices:
|
|
2041
|
+
- CXNK00001234
|
|
2042
|
+
RetrieveSubscriberbycustomIdSubscriberID:
|
|
2043
|
+
title: RetrieveSubscriberbycustomIdSubscriberID
|
|
2044
|
+
required:
|
|
2045
|
+
- _id
|
|
2046
|
+
- customId
|
|
2047
|
+
- name
|
|
2048
|
+
- locations
|
|
2049
|
+
type: object
|
|
2050
|
+
properties:
|
|
2051
|
+
_id:
|
|
2052
|
+
type: string
|
|
2053
|
+
customId:
|
|
2054
|
+
type: string
|
|
2055
|
+
name:
|
|
2056
|
+
type: string
|
|
2057
|
+
locations:
|
|
2058
|
+
type: array
|
|
2059
|
+
items:
|
|
2060
|
+
$ref: '#/components/schemas/Location'
|
|
2061
|
+
description: ''
|
|
2062
|
+
example:
|
|
2063
|
+
_id: 7317b27e-528f-4c40-83bc-6d8a46edd0a3
|
|
2064
|
+
customId: '67890'
|
|
2065
|
+
name: Test user
|
|
2066
|
+
locations:
|
|
2067
|
+
- address:
|
|
2068
|
+
streetLine1: 123 Oak St
|
|
2069
|
+
city: Anytown
|
|
2070
|
+
state: ZZ
|
|
2071
|
+
zip: '00000'
|
|
2072
|
+
country: USA
|
|
2073
|
+
contacts:
|
|
2074
|
+
- phone: 919-123-4567
|
|
2075
|
+
email: some@user.org
|
|
2076
|
+
devices:
|
|
2077
|
+
- CXNK00001234
|
|
2078
|
+
RetrieveSubscriberbyName:
|
|
2079
|
+
title: RetrieveSubscriberbyName
|
|
2080
|
+
required:
|
|
2081
|
+
- _id
|
|
2082
|
+
- customId
|
|
2083
|
+
- name
|
|
2084
|
+
- locations
|
|
2085
|
+
type: object
|
|
2086
|
+
properties:
|
|
2087
|
+
_id:
|
|
2088
|
+
type: string
|
|
2089
|
+
customId:
|
|
2090
|
+
type: string
|
|
2091
|
+
name:
|
|
2092
|
+
type: string
|
|
2093
|
+
locations:
|
|
2094
|
+
type: array
|
|
2095
|
+
items:
|
|
2096
|
+
$ref: '#/components/schemas/Location'
|
|
2097
|
+
description: ''
|
|
2098
|
+
example:
|
|
2099
|
+
_id: 7317b27e-528f-4c40-83bc-6d8a46edd0a3
|
|
2100
|
+
customId: '67890'
|
|
2101
|
+
name: Test user
|
|
2102
|
+
locations:
|
|
2103
|
+
- address:
|
|
2104
|
+
streetLine1: 123 Oak St
|
|
2105
|
+
city: Anytown
|
|
2106
|
+
state: ZZ
|
|
2107
|
+
zip: '00000'
|
|
2108
|
+
country: USA
|
|
2109
|
+
contacts:
|
|
2110
|
+
- phone: 919-123-4567
|
|
2111
|
+
email: some@user.org
|
|
2112
|
+
devices:
|
|
2113
|
+
- CXNK00001234
|
|
2114
|
+
RetrieveSubscribersbyPhoneNumber:
|
|
2115
|
+
title: RetrieveSubscribersbyPhoneNumber
|
|
2116
|
+
required:
|
|
2117
|
+
- _id
|
|
2118
|
+
- customId
|
|
2119
|
+
- name
|
|
2120
|
+
- locations
|
|
2121
|
+
type: object
|
|
2122
|
+
properties:
|
|
2123
|
+
_id:
|
|
2124
|
+
type: string
|
|
2125
|
+
customId:
|
|
2126
|
+
type: string
|
|
2127
|
+
name:
|
|
2128
|
+
type: string
|
|
2129
|
+
locations:
|
|
2130
|
+
type: array
|
|
2131
|
+
items:
|
|
2132
|
+
$ref: '#/components/schemas/Location'
|
|
2133
|
+
description: ''
|
|
2134
|
+
example:
|
|
2135
|
+
_id: 7317b27e-528f-4c40-83bc-6d8a46edd0a3
|
|
2136
|
+
customId: '67890'
|
|
2137
|
+
name: Test user
|
|
2138
|
+
locations:
|
|
2139
|
+
- address:
|
|
2140
|
+
streetLine1: 123 Oak St
|
|
2141
|
+
city: Anytown
|
|
2142
|
+
state: ZZ
|
|
2143
|
+
zip: '00000'
|
|
2144
|
+
country: USA
|
|
2145
|
+
contacts:
|
|
2146
|
+
- phone: 919-123-4567
|
|
2147
|
+
email: some@user.org
|
|
2148
|
+
devices:
|
|
2149
|
+
- CXNK00001234
|
|
2150
|
+
RetrieveSubscriberbyEmailAddress:
|
|
2151
|
+
title: RetrieveSubscriberbyEmailAddress
|
|
2152
|
+
required:
|
|
2153
|
+
- _id
|
|
2154
|
+
- customId
|
|
2155
|
+
- name
|
|
2156
|
+
- locations
|
|
2157
|
+
type: object
|
|
2158
|
+
properties:
|
|
2159
|
+
_id:
|
|
2160
|
+
type: string
|
|
2161
|
+
customId:
|
|
2162
|
+
type: string
|
|
2163
|
+
name:
|
|
2164
|
+
type: string
|
|
2165
|
+
locations:
|
|
2166
|
+
type: array
|
|
2167
|
+
items:
|
|
2168
|
+
$ref: '#/components/schemas/Location'
|
|
2169
|
+
description: ''
|
|
2170
|
+
example:
|
|
2171
|
+
_id: 7317b27e-528f-4c40-83bc-6d8a46edd0a3
|
|
2172
|
+
customId: '67890'
|
|
2173
|
+
name: Test user
|
|
2174
|
+
locations:
|
|
2175
|
+
- address:
|
|
2176
|
+
streetLine1: 123 Oak St
|
|
2177
|
+
city: Anytown
|
|
2178
|
+
state: ZZ
|
|
2179
|
+
zip: '00000'
|
|
2180
|
+
country: USA
|
|
2181
|
+
contacts:
|
|
2182
|
+
- phone: 919-123-4567
|
|
2183
|
+
email: some@user.org
|
|
2184
|
+
devices:
|
|
2185
|
+
- CXNK00001234
|
|
2186
|
+
UpdateSubscriberorreplaceassociatedsystemRequest:
|
|
2187
|
+
title: UpdateSubscriberorreplaceassociatedsystemRequest
|
|
2188
|
+
required:
|
|
2189
|
+
- customId
|
|
2190
|
+
- name
|
|
2191
|
+
- _id
|
|
2192
|
+
- locations
|
|
2193
|
+
type: object
|
|
2194
|
+
properties:
|
|
2195
|
+
customId:
|
|
2196
|
+
type: string
|
|
2197
|
+
name:
|
|
2198
|
+
type: string
|
|
2199
|
+
_id:
|
|
2200
|
+
type: string
|
|
2201
|
+
locations:
|
|
2202
|
+
type: array
|
|
2203
|
+
items:
|
|
2204
|
+
$ref: '#/components/schemas/Location7'
|
|
2205
|
+
description: ''
|
|
2206
|
+
example:
|
|
2207
|
+
customId: existingSubscriberLocationID
|
|
2208
|
+
name: Customer XYZ
|
|
2209
|
+
_id: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
|
|
2210
|
+
locations:
|
|
2211
|
+
- address: {}
|
|
2212
|
+
devices:
|
|
2213
|
+
- CXNKFF00FF00
|
|
2214
|
+
contacts:
|
|
2215
|
+
- phone: 312-555-1060
|
|
2216
|
+
email: me@nowhere.bad
|
|
2217
|
+
Location7:
|
|
2218
|
+
title: Location7
|
|
2219
|
+
required:
|
|
2220
|
+
- address
|
|
2221
|
+
- devices
|
|
2222
|
+
- contacts
|
|
2223
|
+
type: object
|
|
2224
|
+
properties:
|
|
2225
|
+
address:
|
|
2226
|
+
type: object
|
|
2227
|
+
devices:
|
|
2228
|
+
type: array
|
|
2229
|
+
items:
|
|
2230
|
+
type: string
|
|
2231
|
+
description: ''
|
|
2232
|
+
contacts:
|
|
2233
|
+
type: array
|
|
2234
|
+
items:
|
|
2235
|
+
$ref: '#/components/schemas/Contact'
|
|
2236
|
+
description: ''
|
|
2237
|
+
example:
|
|
2238
|
+
address: {}
|
|
2239
|
+
devices:
|
|
2240
|
+
- CXNKFF00FF00
|
|
2241
|
+
contacts:
|
|
2242
|
+
- phone: 312-555-1060
|
|
2243
|
+
email: me@nowhere.bad
|
|
2244
|
+
CreateProvisioningRecordRequest:
|
|
2245
|
+
title: CreateProvisioningRecordRequest
|
|
2246
|
+
required:
|
|
2247
|
+
- opMode
|
|
2248
|
+
- deviceId
|
|
2249
|
+
- subscriberId
|
|
2250
|
+
- data
|
|
2251
|
+
- video
|
|
2252
|
+
- voice
|
|
2253
|
+
- wifi
|
|
2254
|
+
- modelName
|
|
2255
|
+
type: object
|
|
2256
|
+
properties:
|
|
2257
|
+
opMode:
|
|
2258
|
+
type: string
|
|
2259
|
+
deviceId:
|
|
2260
|
+
type: string
|
|
2261
|
+
subscriberId:
|
|
2262
|
+
type: string
|
|
2263
|
+
data:
|
|
2264
|
+
allOf:
|
|
2265
|
+
- $ref: '#/components/schemas/Data'
|
|
2266
|
+
- example:
|
|
2267
|
+
Enable: true
|
|
2268
|
+
pppoe:
|
|
2269
|
+
Username: some@user.org
|
|
2270
|
+
Password: my-ppp-password
|
|
2271
|
+
VlanId: 888
|
|
2272
|
+
Pbit: 0
|
|
2273
|
+
video:
|
|
2274
|
+
allOf:
|
|
2275
|
+
- $ref: '#/components/schemas/Video'
|
|
2276
|
+
- example:
|
|
2277
|
+
Enable: true
|
|
2278
|
+
VlanId: 999
|
|
2279
|
+
Pbit: 4
|
|
2280
|
+
voice:
|
|
2281
|
+
$ref: '#/components/schemas/Voice'
|
|
2282
|
+
wifi:
|
|
2283
|
+
type: object
|
|
2284
|
+
additionalProperties:
|
|
2285
|
+
$ref: '#/components/schemas/generatedObject2'
|
|
2286
|
+
modelName:
|
|
2287
|
+
type: string
|
|
2288
|
+
Data:
|
|
2289
|
+
title: Data
|
|
2290
|
+
required:
|
|
2291
|
+
- Enable
|
|
2292
|
+
- pppoe
|
|
2293
|
+
- VlanId
|
|
2294
|
+
- Pbit
|
|
2295
|
+
type: object
|
|
2296
|
+
properties:
|
|
2297
|
+
Enable:
|
|
2298
|
+
type: boolean
|
|
2299
|
+
pppoe:
|
|
2300
|
+
allOf:
|
|
2301
|
+
- $ref: '#/components/schemas/Pppoe'
|
|
2302
|
+
- example:
|
|
2303
|
+
Username: some@user.org
|
|
2304
|
+
Password: my-ppp-password
|
|
2305
|
+
VlanId:
|
|
2306
|
+
type: integer
|
|
2307
|
+
format: int32
|
|
2308
|
+
Pbit:
|
|
2309
|
+
type: integer
|
|
2310
|
+
format: int32
|
|
2311
|
+
example:
|
|
2312
|
+
Enable: true
|
|
2313
|
+
pppoe:
|
|
2314
|
+
Username: some@user.org
|
|
2315
|
+
Password: my-ppp-password
|
|
2316
|
+
VlanId: 888
|
|
2317
|
+
Pbit: 0
|
|
2318
|
+
Pppoe:
|
|
2319
|
+
title: Pppoe
|
|
2320
|
+
required:
|
|
2321
|
+
- Username
|
|
2322
|
+
- Password
|
|
2323
|
+
type: object
|
|
2324
|
+
properties:
|
|
2325
|
+
Username:
|
|
2326
|
+
type: string
|
|
2327
|
+
Password:
|
|
2328
|
+
type: string
|
|
2329
|
+
example:
|
|
2330
|
+
Username: some@user.org
|
|
2331
|
+
Password: my-ppp-password
|
|
2332
|
+
Video:
|
|
2333
|
+
title: Video
|
|
2334
|
+
required:
|
|
2335
|
+
- Enable
|
|
2336
|
+
- VlanId
|
|
2337
|
+
- Pbit
|
|
2338
|
+
type: object
|
|
2339
|
+
properties:
|
|
2340
|
+
Enable:
|
|
2341
|
+
type: boolean
|
|
2342
|
+
VlanId:
|
|
2343
|
+
type: integer
|
|
2344
|
+
format: int32
|
|
2345
|
+
Pbit:
|
|
2346
|
+
type: integer
|
|
2347
|
+
format: int32
|
|
2348
|
+
example:
|
|
2349
|
+
Enable: true
|
|
2350
|
+
VlanId: 999
|
|
2351
|
+
Pbit: 4
|
|
2352
|
+
Voice:
|
|
2353
|
+
title: Voice
|
|
2354
|
+
required:
|
|
2355
|
+
- ServiceType
|
|
2356
|
+
- FaxT38
|
|
2357
|
+
- DialPlan
|
|
2358
|
+
- X_CALIX_SXACC_RG_WAN
|
|
2359
|
+
- Line
|
|
2360
|
+
type: object
|
|
2361
|
+
properties:
|
|
2362
|
+
ServiceType:
|
|
2363
|
+
type: string
|
|
2364
|
+
FaxT38:
|
|
2365
|
+
allOf:
|
|
2366
|
+
- $ref: '#/components/schemas/FaxT38'
|
|
2367
|
+
- example:
|
|
2368
|
+
Enable: false
|
|
2369
|
+
DialPlan:
|
|
2370
|
+
type: string
|
|
2371
|
+
X_CALIX_SXACC_RG_WAN:
|
|
2372
|
+
allOf:
|
|
2373
|
+
- $ref: '#/components/schemas/XCALIXSXACCRGWAN'
|
|
2374
|
+
- example:
|
|
2375
|
+
ServiceConnectionType: DHCP
|
|
2376
|
+
Line:
|
|
2377
|
+
type: object
|
|
2378
|
+
additionalProperties:
|
|
2379
|
+
$ref: '#/components/schemas/generatedObject'
|
|
2380
|
+
FaxT38:
|
|
2381
|
+
title: FaxT38
|
|
2382
|
+
required:
|
|
2383
|
+
- Enable
|
|
2384
|
+
type: object
|
|
2385
|
+
properties:
|
|
2386
|
+
Enable:
|
|
2387
|
+
type: boolean
|
|
2388
|
+
example:
|
|
2389
|
+
Enable: false
|
|
2390
|
+
XCALIXSXACCRGWAN:
|
|
2391
|
+
title: XCALIXSXACCRGWAN
|
|
2392
|
+
required:
|
|
2393
|
+
- ServiceConnectionType
|
|
2394
|
+
type: object
|
|
2395
|
+
properties:
|
|
2396
|
+
ServiceConnectionType:
|
|
2397
|
+
type: string
|
|
2398
|
+
example:
|
|
2399
|
+
ServiceConnectionType: DHCP
|
|
2400
|
+
generatedObject:
|
|
2401
|
+
title: generatedObject
|
|
2402
|
+
required:
|
|
2403
|
+
- Enable
|
|
2404
|
+
- SIP
|
|
2405
|
+
- CallingFeatures
|
|
2406
|
+
- VoiceProcessing
|
|
2407
|
+
type: object
|
|
2408
|
+
properties:
|
|
2409
|
+
Enable:
|
|
2410
|
+
type: string
|
|
2411
|
+
SIP:
|
|
2412
|
+
allOf:
|
|
2413
|
+
- $ref: '#/components/schemas/SIP'
|
|
2414
|
+
- example:
|
|
2415
|
+
AuthUserName: '9191234567'
|
|
2416
|
+
AuthPassword: my-sip-password
|
|
2417
|
+
URI: '9191234567'
|
|
2418
|
+
CallingFeatures:
|
|
2419
|
+
allOf:
|
|
2420
|
+
- $ref: '#/components/schemas/CallingFeatures'
|
|
2421
|
+
- example:
|
|
2422
|
+
CallerIDEnable: true
|
|
2423
|
+
CallWaitingEnable: true
|
|
2424
|
+
X_000631_ThreewayCallingEnable: true
|
|
2425
|
+
MWIEnable: true
|
|
2426
|
+
X_000631_DirectConnectEnable: false
|
|
2427
|
+
X_000631_DirectConnectNumber: ''
|
|
2428
|
+
X_000631_DirectConnectTimer: 0
|
|
2429
|
+
VoiceProcessing:
|
|
2430
|
+
allOf:
|
|
2431
|
+
- $ref: '#/components/schemas/VoiceProcessing'
|
|
2432
|
+
- example:
|
|
2433
|
+
ReceiveGain: -90
|
|
2434
|
+
TransmitGain: -30
|
|
2435
|
+
example:
|
|
2436
|
+
Enable: Enabled
|
|
2437
|
+
SIP:
|
|
2438
|
+
AuthUserName: '9191234567'
|
|
2439
|
+
AuthPassword: my-sip-password
|
|
2440
|
+
URI: '9191234567'
|
|
2441
|
+
CallingFeatures:
|
|
2442
|
+
CallerIDEnable: true
|
|
2443
|
+
CallWaitingEnable: true
|
|
2444
|
+
X_000631_ThreewayCallingEnable: true
|
|
2445
|
+
MWIEnable: true
|
|
2446
|
+
X_000631_DirectConnectEnable: false
|
|
2447
|
+
X_000631_DirectConnectNumber: ''
|
|
2448
|
+
X_000631_DirectConnectTimer: 0
|
|
2449
|
+
VoiceProcessing:
|
|
2450
|
+
ReceiveGain: -90
|
|
2451
|
+
TransmitGain: -30
|
|
2452
|
+
SIP:
|
|
2453
|
+
title: SIP
|
|
2454
|
+
required:
|
|
2455
|
+
- AuthUserName
|
|
2456
|
+
- AuthPassword
|
|
2457
|
+
- URI
|
|
2458
|
+
type: object
|
|
2459
|
+
properties:
|
|
2460
|
+
AuthUserName:
|
|
2461
|
+
type: string
|
|
2462
|
+
AuthPassword:
|
|
2463
|
+
type: string
|
|
2464
|
+
URI:
|
|
2465
|
+
type: string
|
|
2466
|
+
example:
|
|
2467
|
+
AuthUserName: '9191234567'
|
|
2468
|
+
AuthPassword: my-sip-password
|
|
2469
|
+
URI: '9191234567'
|
|
2470
|
+
CallingFeatures:
|
|
2471
|
+
title: CallingFeatures
|
|
2472
|
+
required:
|
|
2473
|
+
- CallerIDEnable
|
|
2474
|
+
- CallWaitingEnable
|
|
2475
|
+
- X_000631_ThreewayCallingEnable
|
|
2476
|
+
- MWIEnable
|
|
2477
|
+
- X_000631_DirectConnectEnable
|
|
2478
|
+
- X_000631_DirectConnectNumber
|
|
2479
|
+
- X_000631_DirectConnectTimer
|
|
2480
|
+
type: object
|
|
2481
|
+
properties:
|
|
2482
|
+
CallerIDEnable:
|
|
2483
|
+
type: boolean
|
|
2484
|
+
CallWaitingEnable:
|
|
2485
|
+
type: boolean
|
|
2486
|
+
X_000631_ThreewayCallingEnable:
|
|
2487
|
+
type: boolean
|
|
2488
|
+
MWIEnable:
|
|
2489
|
+
type: boolean
|
|
2490
|
+
X_000631_DirectConnectEnable:
|
|
2491
|
+
type: boolean
|
|
2492
|
+
X_000631_DirectConnectNumber:
|
|
2493
|
+
type: string
|
|
2494
|
+
X_000631_DirectConnectTimer:
|
|
2495
|
+
type: integer
|
|
2496
|
+
format: int32
|
|
2497
|
+
example:
|
|
2498
|
+
CallerIDEnable: true
|
|
2499
|
+
CallWaitingEnable: true
|
|
2500
|
+
X_000631_ThreewayCallingEnable: true
|
|
2501
|
+
MWIEnable: true
|
|
2502
|
+
X_000631_DirectConnectEnable: false
|
|
2503
|
+
X_000631_DirectConnectNumber: ''
|
|
2504
|
+
X_000631_DirectConnectTimer: 0
|
|
2505
|
+
VoiceProcessing:
|
|
2506
|
+
title: VoiceProcessing
|
|
2507
|
+
required:
|
|
2508
|
+
- ReceiveGain
|
|
2509
|
+
- TransmitGain
|
|
2510
|
+
type: object
|
|
2511
|
+
properties:
|
|
2512
|
+
ReceiveGain:
|
|
2513
|
+
type: integer
|
|
2514
|
+
format: int32
|
|
2515
|
+
TransmitGain:
|
|
2516
|
+
type: integer
|
|
2517
|
+
format: int32
|
|
2518
|
+
example:
|
|
2519
|
+
ReceiveGain: -90
|
|
2520
|
+
TransmitGain: -30
|
|
2521
|
+
generatedObject1:
|
|
2522
|
+
title: generatedObject1
|
|
2523
|
+
required:
|
|
2524
|
+
- Enable
|
|
2525
|
+
type: object
|
|
2526
|
+
properties:
|
|
2527
|
+
Enable:
|
|
2528
|
+
type: string
|
|
2529
|
+
example:
|
|
2530
|
+
Enable: Disabled
|
|
2531
|
+
generatedObject2:
|
|
2532
|
+
title: generatedObject2
|
|
2533
|
+
required:
|
|
2534
|
+
- Enable
|
|
2535
|
+
- SSID
|
|
2536
|
+
- SSIDAdvertisementEnabled
|
|
2537
|
+
- BeaconType
|
|
2538
|
+
- IEEE11iEncryptionModes
|
|
2539
|
+
- WPAEncryptionModes
|
|
2540
|
+
- KeyPassphrase
|
|
2541
|
+
- RadioEnabled
|
|
2542
|
+
type: object
|
|
2543
|
+
properties:
|
|
2544
|
+
Enable:
|
|
2545
|
+
type: boolean
|
|
2546
|
+
SSID:
|
|
2547
|
+
type: string
|
|
2548
|
+
SSIDAdvertisementEnabled:
|
|
2549
|
+
type: boolean
|
|
2550
|
+
BeaconType:
|
|
2551
|
+
type: string
|
|
2552
|
+
IEEE11iEncryptionModes:
|
|
2553
|
+
type: string
|
|
2554
|
+
WPAEncryptionModes:
|
|
2555
|
+
type: string
|
|
2556
|
+
KeyPassphrase:
|
|
2557
|
+
type: string
|
|
2558
|
+
RadioEnabled:
|
|
2559
|
+
type: boolean
|
|
2560
|
+
example:
|
|
2561
|
+
Enable: true
|
|
2562
|
+
SSID: Test User Home
|
|
2563
|
+
SSIDAdvertisementEnabled: true
|
|
2564
|
+
BeaconType: WPAand11i
|
|
2565
|
+
IEEE11iEncryptionModes: AESEncryption
|
|
2566
|
+
WPAEncryptionModes: AESEncryption
|
|
2567
|
+
KeyPassphrase: s3crets!!
|
|
2568
|
+
RadioEnabled: true
|
|
2569
|
+
Provisioningrecord:
|
|
2570
|
+
title: Provisioningrecord
|
|
2571
|
+
required:
|
|
2572
|
+
- _id
|
|
2573
|
+
- orgId
|
|
2574
|
+
- opMode
|
|
2575
|
+
- deviceId
|
|
2576
|
+
- subscriberId
|
|
2577
|
+
- data
|
|
2578
|
+
- video
|
|
2579
|
+
- voice
|
|
2580
|
+
- wifi
|
|
2581
|
+
- modelName
|
|
2582
|
+
type: object
|
|
2583
|
+
properties:
|
|
2584
|
+
_id:
|
|
2585
|
+
type: string
|
|
2586
|
+
orgId:
|
|
2587
|
+
type: string
|
|
2588
|
+
opMode:
|
|
2589
|
+
type: string
|
|
2590
|
+
deviceId:
|
|
2591
|
+
type: string
|
|
2592
|
+
subscriberId:
|
|
2593
|
+
type: string
|
|
2594
|
+
data:
|
|
2595
|
+
allOf:
|
|
2596
|
+
- $ref: '#/components/schemas/Data'
|
|
2597
|
+
- example:
|
|
2598
|
+
Enable: true
|
|
2599
|
+
pppoe:
|
|
2600
|
+
Username: some@user.org
|
|
2601
|
+
Password: my-ppp-password
|
|
2602
|
+
VlanId: 888
|
|
2603
|
+
Pbit: 0
|
|
2604
|
+
video:
|
|
2605
|
+
allOf:
|
|
2606
|
+
- $ref: '#/components/schemas/Video'
|
|
2607
|
+
- example:
|
|
2608
|
+
Enable: true
|
|
2609
|
+
VlanId: 999
|
|
2610
|
+
Pbit: 4
|
|
2611
|
+
voice:
|
|
2612
|
+
$ref: '#/components/schemas/Voice1'
|
|
2613
|
+
wifi:
|
|
2614
|
+
type: object
|
|
2615
|
+
additionalProperties:
|
|
2616
|
+
$ref: '#/components/schemas/generatedObject6'
|
|
2617
|
+
modelName:
|
|
2618
|
+
type: string
|
|
2619
|
+
Voice1:
|
|
2620
|
+
title: Voice1
|
|
2621
|
+
required:
|
|
2622
|
+
- ServiceType
|
|
2623
|
+
- FaxT38
|
|
2624
|
+
- DialPlan
|
|
2625
|
+
- Line
|
|
2626
|
+
type: object
|
|
2627
|
+
properties:
|
|
2628
|
+
ServiceType:
|
|
2629
|
+
type: string
|
|
2630
|
+
FaxT38:
|
|
2631
|
+
allOf:
|
|
2632
|
+
- $ref: '#/components/schemas/FaxT38'
|
|
2633
|
+
- example:
|
|
2634
|
+
Enable: false
|
|
2635
|
+
DialPlan:
|
|
2636
|
+
type: string
|
|
2637
|
+
Line:
|
|
2638
|
+
type: object
|
|
2639
|
+
additionalProperties:
|
|
2640
|
+
$ref: '#/components/schemas/generatedObject'
|
|
2641
|
+
generatedObject6:
|
|
2642
|
+
title: generatedObject6
|
|
2643
|
+
required:
|
|
2644
|
+
- Enable
|
|
2645
|
+
- SSID
|
|
2646
|
+
- SSIDAdvertisementEnabled
|
|
2647
|
+
- BeaconType
|
|
2648
|
+
- IEEE11iEncryptionModes
|
|
2649
|
+
- WPAEncryptionModes
|
|
2650
|
+
- KeyPassphrase
|
|
2651
|
+
type: object
|
|
2652
|
+
properties:
|
|
2653
|
+
Enable:
|
|
2654
|
+
type: boolean
|
|
2655
|
+
SSID:
|
|
2656
|
+
type: string
|
|
2657
|
+
SSIDAdvertisementEnabled:
|
|
2658
|
+
type: boolean
|
|
2659
|
+
BeaconType:
|
|
2660
|
+
type: string
|
|
2661
|
+
IEEE11iEncryptionModes:
|
|
2662
|
+
type: string
|
|
2663
|
+
WPAEncryptionModes:
|
|
2664
|
+
type: string
|
|
2665
|
+
KeyPassphrase:
|
|
2666
|
+
type: string
|
|
2667
|
+
example:
|
|
2668
|
+
Enable: true
|
|
2669
|
+
SSID: Test User Home
|
|
2670
|
+
SSIDAdvertisementEnabled: true
|
|
2671
|
+
BeaconType: WPAand11i
|
|
2672
|
+
IEEE11iEncryptionModes: AESEncryption
|
|
2673
|
+
WPAEncryptionModes: AESEncryption
|
|
2674
|
+
KeyPassphrase: s3crets!!
|
|
2675
|
+
RetrieveProvisioningRecordbyInternalID:
|
|
2676
|
+
title: RetrieveProvisioningRecordbyInternalID
|
|
2677
|
+
required:
|
|
2678
|
+
- _id
|
|
2679
|
+
- opMode
|
|
2680
|
+
- deviceId
|
|
2681
|
+
- subscriberId
|
|
2682
|
+
- data
|
|
2683
|
+
- video
|
|
2684
|
+
- voice
|
|
2685
|
+
- wifi
|
|
2686
|
+
- modelName
|
|
2687
|
+
- orgId
|
|
2688
|
+
type: object
|
|
2689
|
+
properties:
|
|
2690
|
+
_id:
|
|
2691
|
+
type: string
|
|
2692
|
+
opMode:
|
|
2693
|
+
type: string
|
|
2694
|
+
deviceId:
|
|
2695
|
+
type: string
|
|
2696
|
+
subscriberId:
|
|
2697
|
+
type: string
|
|
2698
|
+
data:
|
|
2699
|
+
allOf:
|
|
2700
|
+
- $ref: '#/components/schemas/Data'
|
|
2701
|
+
- example:
|
|
2702
|
+
Enable: true
|
|
2703
|
+
pppoe:
|
|
2704
|
+
Username: some@user.org
|
|
2705
|
+
Password: my-ppp-password
|
|
2706
|
+
VlanId: 888
|
|
2707
|
+
Pbit: 0
|
|
2708
|
+
video:
|
|
2709
|
+
allOf:
|
|
2710
|
+
- $ref: '#/components/schemas/Video'
|
|
2711
|
+
- example:
|
|
2712
|
+
Enable: true
|
|
2713
|
+
VlanId: 999
|
|
2714
|
+
Pbit: 4
|
|
2715
|
+
voice:
|
|
2716
|
+
$ref: '#/components/schemas/Voice1'
|
|
2717
|
+
wifi:
|
|
2718
|
+
type: object
|
|
2719
|
+
additionalProperties:
|
|
2720
|
+
$ref: '#/components/schemas/generatedObject2'
|
|
2721
|
+
modelName:
|
|
2722
|
+
type: string
|
|
2723
|
+
orgId:
|
|
2724
|
+
type: string
|
|
2725
|
+
RetrieveProvisioningRecordsbyDevice:
|
|
2726
|
+
title: RetrieveProvisioningRecordsbyDevice
|
|
2727
|
+
required:
|
|
2728
|
+
- _id
|
|
2729
|
+
- opMode
|
|
2730
|
+
- deviceId
|
|
2731
|
+
- subscriberId
|
|
2732
|
+
- data
|
|
2733
|
+
- video
|
|
2734
|
+
- voice
|
|
2735
|
+
- wifi
|
|
2736
|
+
- modelName
|
|
2737
|
+
- orgId
|
|
2738
|
+
type: object
|
|
2739
|
+
properties:
|
|
2740
|
+
_id:
|
|
2741
|
+
type: string
|
|
2742
|
+
opMode:
|
|
2743
|
+
type: string
|
|
2744
|
+
deviceId:
|
|
2745
|
+
type: string
|
|
2746
|
+
subscriberId:
|
|
2747
|
+
type: string
|
|
2748
|
+
data:
|
|
2749
|
+
allOf:
|
|
2750
|
+
- $ref: '#/components/schemas/Data'
|
|
2751
|
+
- example:
|
|
2752
|
+
Enable: true
|
|
2753
|
+
pppoe:
|
|
2754
|
+
Username: some@user.org
|
|
2755
|
+
Password: my-ppp-password
|
|
2756
|
+
VlanId: 888
|
|
2757
|
+
Pbit: 0
|
|
2758
|
+
video:
|
|
2759
|
+
allOf:
|
|
2760
|
+
- $ref: '#/components/schemas/Video'
|
|
2761
|
+
- example:
|
|
2762
|
+
Enable: true
|
|
2763
|
+
VlanId: 999
|
|
2764
|
+
Pbit: 4
|
|
2765
|
+
voice:
|
|
2766
|
+
$ref: '#/components/schemas/Voice'
|
|
2767
|
+
wifi:
|
|
2768
|
+
type: object
|
|
2769
|
+
additionalProperties:
|
|
2770
|
+
$ref: '#/components/schemas/generatedObject2'
|
|
2771
|
+
modelName:
|
|
2772
|
+
type: string
|
|
2773
|
+
orgId:
|
|
2774
|
+
type: string
|
|
2775
|
+
RetrieveProvisioningRecordsbySubscriber:
|
|
2776
|
+
title: RetrieveProvisioningRecordsbySubscriber
|
|
2777
|
+
required:
|
|
2778
|
+
- _id
|
|
2779
|
+
- opMode
|
|
2780
|
+
- deviceId
|
|
2781
|
+
- subscriberId
|
|
2782
|
+
- data
|
|
2783
|
+
- video
|
|
2784
|
+
- voice
|
|
2785
|
+
- wifi
|
|
2786
|
+
- modelName
|
|
2787
|
+
- orgId
|
|
2788
|
+
type: object
|
|
2789
|
+
properties:
|
|
2790
|
+
_id:
|
|
2791
|
+
type: string
|
|
2792
|
+
opMode:
|
|
2793
|
+
type: string
|
|
2794
|
+
deviceId:
|
|
2795
|
+
type: string
|
|
2796
|
+
subscriberId:
|
|
2797
|
+
type: string
|
|
2798
|
+
data:
|
|
2799
|
+
allOf:
|
|
2800
|
+
- $ref: '#/components/schemas/Data'
|
|
2801
|
+
- example:
|
|
2802
|
+
Enable: true
|
|
2803
|
+
pppoe:
|
|
2804
|
+
Username: some@user.org
|
|
2805
|
+
Password: my-ppp-password
|
|
2806
|
+
VlanId: 888
|
|
2807
|
+
Pbit: 0
|
|
2808
|
+
video:
|
|
2809
|
+
allOf:
|
|
2810
|
+
- $ref: '#/components/schemas/Video'
|
|
2811
|
+
- example:
|
|
2812
|
+
Enable: true
|
|
2813
|
+
VlanId: 999
|
|
2814
|
+
Pbit: 4
|
|
2815
|
+
voice:
|
|
2816
|
+
$ref: '#/components/schemas/Voice'
|
|
2817
|
+
wifi:
|
|
2818
|
+
type: object
|
|
2819
|
+
additionalProperties:
|
|
2820
|
+
$ref: '#/components/schemas/generatedObject2'
|
|
2821
|
+
modelName:
|
|
2822
|
+
type: string
|
|
2823
|
+
orgId:
|
|
2824
|
+
type: string
|
|
2825
|
+
ModifyProvisioningRecordRequest:
|
|
2826
|
+
title: ModifyProvisioningRecordRequest
|
|
2827
|
+
required:
|
|
2828
|
+
- opMode
|
|
2829
|
+
- deviceId
|
|
2830
|
+
- subscriberId
|
|
2831
|
+
- data
|
|
2832
|
+
- video
|
|
2833
|
+
- voice
|
|
2834
|
+
- wifi
|
|
2835
|
+
- modelName
|
|
2836
|
+
type: object
|
|
2837
|
+
properties:
|
|
2838
|
+
opMode:
|
|
2839
|
+
type: string
|
|
2840
|
+
deviceId:
|
|
2841
|
+
type: string
|
|
2842
|
+
subscriberId:
|
|
2843
|
+
type: string
|
|
2844
|
+
data:
|
|
2845
|
+
allOf:
|
|
2846
|
+
- $ref: '#/components/schemas/Data'
|
|
2847
|
+
- example:
|
|
2848
|
+
Enable: true
|
|
2849
|
+
pppoe:
|
|
2850
|
+
Username: some@user.org
|
|
2851
|
+
Password: my-ppp-password
|
|
2852
|
+
VlanId: 888
|
|
2853
|
+
Pbit: 0
|
|
2854
|
+
video:
|
|
2855
|
+
allOf:
|
|
2856
|
+
- $ref: '#/components/schemas/Video'
|
|
2857
|
+
- example:
|
|
2858
|
+
Enable: true
|
|
2859
|
+
VlanId: 999
|
|
2860
|
+
Pbit: 4
|
|
2861
|
+
voice:
|
|
2862
|
+
$ref: '#/components/schemas/Voice1'
|
|
2863
|
+
wifi:
|
|
2864
|
+
type: object
|
|
2865
|
+
additionalProperties:
|
|
2866
|
+
$ref: '#/components/schemas/generatedObject2'
|
|
2867
|
+
modelName:
|
|
2868
|
+
type: string
|
|
2869
|
+
GetParameterValuesRequest:
|
|
2870
|
+
title: GetParameterValuesRequest
|
|
2871
|
+
required:
|
|
2872
|
+
- operation
|
|
2873
|
+
- cpeIdentifier
|
|
2874
|
+
- parameterNames
|
|
2875
|
+
type: object
|
|
2876
|
+
properties:
|
|
2877
|
+
operation:
|
|
2878
|
+
type: string
|
|
2879
|
+
cpeIdentifier:
|
|
2880
|
+
allOf:
|
|
2881
|
+
- $ref: '#/components/schemas/CpeIdentifier'
|
|
2882
|
+
- example:
|
|
2883
|
+
serialNumber: CXNK005A77A9
|
|
2884
|
+
parameterNames:
|
|
2885
|
+
type: array
|
|
2886
|
+
items:
|
|
2887
|
+
type: string
|
|
2888
|
+
description: ''
|
|
2889
|
+
example:
|
|
2890
|
+
operation: GetParameterValues
|
|
2891
|
+
cpeIdentifier:
|
|
2892
|
+
serialNumber: CXNK005A77A9
|
|
2893
|
+
parameterNames:
|
|
2894
|
+
- InternetGatewayDevice.DeviceInfo.UpTime
|
|
2895
|
+
CpeIdentifier:
|
|
2896
|
+
title: CpeIdentifier
|
|
2897
|
+
required:
|
|
2898
|
+
- serialNumber
|
|
2899
|
+
type: object
|
|
2900
|
+
properties:
|
|
2901
|
+
serialNumber:
|
|
2902
|
+
type: string
|
|
2903
|
+
example:
|
|
2904
|
+
serialNumber: CXNK005A77A9
|
|
2905
|
+
GetParameterValues:
|
|
2906
|
+
title: GetParameterValues
|
|
2907
|
+
required:
|
|
2908
|
+
- InternetGatewayDevice
|
|
2909
|
+
type: object
|
|
2910
|
+
properties:
|
|
2911
|
+
InternetGatewayDevice:
|
|
2912
|
+
allOf:
|
|
2913
|
+
- $ref: '#/components/schemas/InternetGatewayDevice'
|
|
2914
|
+
- example:
|
|
2915
|
+
DeviceInfo:
|
|
2916
|
+
UpTime: '1350121'
|
|
2917
|
+
example:
|
|
2918
|
+
InternetGatewayDevice:
|
|
2919
|
+
DeviceInfo:
|
|
2920
|
+
UpTime: '1350121'
|
|
2921
|
+
InternetGatewayDevice:
|
|
2922
|
+
title: InternetGatewayDevice
|
|
2923
|
+
required:
|
|
2924
|
+
- DeviceInfo
|
|
2925
|
+
type: object
|
|
2926
|
+
properties:
|
|
2927
|
+
DeviceInfo:
|
|
2928
|
+
allOf:
|
|
2929
|
+
- $ref: '#/components/schemas/DeviceInfo'
|
|
2930
|
+
- example:
|
|
2931
|
+
UpTime: '1350121'
|
|
2932
|
+
example:
|
|
2933
|
+
DeviceInfo:
|
|
2934
|
+
UpTime: '1350121'
|
|
2935
|
+
DeviceInfo:
|
|
2936
|
+
title: DeviceInfo
|
|
2937
|
+
required:
|
|
2938
|
+
- UpTime
|
|
2939
|
+
type: object
|
|
2940
|
+
properties:
|
|
2941
|
+
UpTime:
|
|
2942
|
+
type: string
|
|
2943
|
+
example:
|
|
2944
|
+
UpTime: '1350121'
|
|
2945
|
+
SetParameterValuesRequest:
|
|
2946
|
+
title: SetParameterValuesRequest
|
|
2947
|
+
required:
|
|
2948
|
+
- operation
|
|
2949
|
+
- cpeIdentifier
|
|
2950
|
+
- parameterValues
|
|
2951
|
+
type: object
|
|
2952
|
+
properties:
|
|
2953
|
+
operation:
|
|
2954
|
+
type: string
|
|
2955
|
+
cpeIdentifier:
|
|
2956
|
+
allOf:
|
|
2957
|
+
- $ref: '#/components/schemas/CpeIdentifier'
|
|
2958
|
+
- example:
|
|
2959
|
+
serialNumber: CXNK005A77A9
|
|
2960
|
+
parameterValues:
|
|
2961
|
+
allOf:
|
|
2962
|
+
- $ref: '#/components/schemas/ParameterValues'
|
|
2963
|
+
- example:
|
|
2964
|
+
InternetGatewayDevice.LANDevice.1.WLANConfiguration.1.X_000631_OperatingChannelBandwidth: 40MHz
|
|
2965
|
+
example:
|
|
2966
|
+
operation: SetParameterValues
|
|
2967
|
+
cpeIdentifier:
|
|
2968
|
+
serialNumber: CXNK005A77A9
|
|
2969
|
+
parameterValues:
|
|
2970
|
+
InternetGatewayDevice.LANDevice.1.WLANConfiguration.1.X_000631_OperatingChannelBandwidth: 40MHz
|
|
2971
|
+
ParameterValues:
|
|
2972
|
+
title: ParameterValues
|
|
2973
|
+
required:
|
|
2974
|
+
- InternetGatewayDevice.LANDevice.1.WLANConfiguration.1.X_000631_OperatingChannelBandwidth
|
|
2975
|
+
type: object
|
|
2976
|
+
properties:
|
|
2977
|
+
InternetGatewayDevice.LANDevice.1.WLANConfiguration.1.X_000631_OperatingChannelBandwidth:
|
|
2978
|
+
type: string
|
|
2979
|
+
example:
|
|
2980
|
+
InternetGatewayDevice.LANDevice.1.WLANConfiguration.1.X_000631_OperatingChannelBandwidth: 40MHz
|
|
2981
|
+
AddObjectRequest:
|
|
2982
|
+
title: AddObjectRequest
|
|
2983
|
+
required:
|
|
2984
|
+
- operation
|
|
2985
|
+
- cpeIdentifier
|
|
2986
|
+
- objectName
|
|
2987
|
+
type: object
|
|
2988
|
+
properties:
|
|
2989
|
+
operation:
|
|
2990
|
+
type: string
|
|
2991
|
+
cpeIdentifier:
|
|
2992
|
+
allOf:
|
|
2993
|
+
- $ref: '#/components/schemas/CpeIdentifier'
|
|
2994
|
+
- example:
|
|
2995
|
+
serialNumber: CXNK005A77A9
|
|
2996
|
+
objectName:
|
|
2997
|
+
type: string
|
|
2998
|
+
example:
|
|
2999
|
+
operation: AddObject
|
|
3000
|
+
cpeIdentifier:
|
|
3001
|
+
serialNumber: CXNK0020803A
|
|
3002
|
+
objectName: InternetGatewayDevice.WANDevice.3.WANConnectionDevice.1.WANIPConnection.9.PortMapping.
|
|
3003
|
+
AddObject-Success:
|
|
3004
|
+
title: AddObject-Success
|
|
3005
|
+
required:
|
|
3006
|
+
- newObjectIndex
|
|
3007
|
+
type: object
|
|
3008
|
+
properties:
|
|
3009
|
+
newObjectIndex:
|
|
3010
|
+
type: integer
|
|
3011
|
+
format: int32
|
|
3012
|
+
example:
|
|
3013
|
+
newObjectIndex: 118
|
|
3014
|
+
DeleteObjectRequest:
|
|
3015
|
+
title: DeleteObjectRequest
|
|
3016
|
+
required:
|
|
3017
|
+
- operation
|
|
3018
|
+
- cpeIdentifier
|
|
3019
|
+
- objectName
|
|
3020
|
+
type: object
|
|
3021
|
+
properties:
|
|
3022
|
+
operation:
|
|
3023
|
+
type: string
|
|
3024
|
+
cpeIdentifier:
|
|
3025
|
+
allOf:
|
|
3026
|
+
- $ref: '#/components/schemas/CpeIdentifier'
|
|
3027
|
+
- example:
|
|
3028
|
+
serialNumber: CXNK005A77A9
|
|
3029
|
+
objectName:
|
|
3030
|
+
type: string
|
|
3031
|
+
example:
|
|
3032
|
+
operation: DeleteObject
|
|
3033
|
+
cpeIdentifier:
|
|
3034
|
+
serialNumber: CXNK0020803A
|
|
3035
|
+
objectName: InternetGatewayDevice.WANDevice.3.WANConnectionDevice.1.WANIPConnection.9.PortMapping.117.
|
|
3036
|
+
RebootRequest:
|
|
3037
|
+
title: RebootRequest
|
|
3038
|
+
required:
|
|
3039
|
+
- operation
|
|
3040
|
+
- cpeIdentifier
|
|
3041
|
+
type: object
|
|
3042
|
+
properties:
|
|
3043
|
+
operation:
|
|
3044
|
+
type: string
|
|
3045
|
+
cpeIdentifier:
|
|
3046
|
+
allOf:
|
|
3047
|
+
- $ref: '#/components/schemas/CpeIdentifier'
|
|
3048
|
+
- example:
|
|
3049
|
+
serialNumber: CXNK005A77A9
|
|
3050
|
+
example:
|
|
3051
|
+
operation: Reboot
|
|
3052
|
+
cpeIdentifier:
|
|
3053
|
+
serialNumber: CXNK005A77A9
|
|
3054
|
+
FactoryResetRequest:
|
|
3055
|
+
title: FactoryResetRequest
|
|
3056
|
+
required:
|
|
3057
|
+
- operation
|
|
3058
|
+
- cpeIdentifier
|
|
3059
|
+
type: object
|
|
3060
|
+
properties:
|
|
3061
|
+
operation:
|
|
3062
|
+
type: string
|
|
3063
|
+
cpeIdentifier:
|
|
3064
|
+
allOf:
|
|
3065
|
+
- $ref: '#/components/schemas/CpeIdentifier'
|
|
3066
|
+
- example:
|
|
3067
|
+
serialNumber: CXNK005A77A9
|
|
3068
|
+
example:
|
|
3069
|
+
operation: FactoryReset
|
|
3070
|
+
cpeIdentifier:
|
|
3071
|
+
serialNumber: CXNK005A77AA
|
|
3072
|
+
RetrieveAllDeviceGroup:
|
|
3073
|
+
title: RetrieveAllDeviceGroup
|
|
3074
|
+
required:
|
|
3075
|
+
- _id
|
|
3076
|
+
- name
|
|
3077
|
+
- description
|
|
3078
|
+
- type
|
|
3079
|
+
type: object
|
|
3080
|
+
properties:
|
|
3081
|
+
_id:
|
|
3082
|
+
type: string
|
|
3083
|
+
name:
|
|
3084
|
+
type: string
|
|
3085
|
+
description:
|
|
3086
|
+
type: string
|
|
3087
|
+
type:
|
|
3088
|
+
type: string
|
|
3089
|
+
allowInheritance:
|
|
3090
|
+
type: boolean
|
|
3091
|
+
example:
|
|
3092
|
+
_id: 4a942d03-1b7c-4c7f-9771-b19f143907f5
|
|
3093
|
+
name: All 844E
|
|
3094
|
+
description: Dynamic group containing all Calix 844E devices
|
|
3095
|
+
type: dynamic
|
|
3096
|
+
RetrieveGroupbyID:
|
|
3097
|
+
title: RetrieveGroupbyID
|
|
3098
|
+
required:
|
|
3099
|
+
- _id
|
|
3100
|
+
- name
|
|
3101
|
+
- description
|
|
3102
|
+
- type
|
|
3103
|
+
- allowInheritance
|
|
3104
|
+
type: object
|
|
3105
|
+
properties:
|
|
3106
|
+
_id:
|
|
3107
|
+
type: string
|
|
3108
|
+
name:
|
|
3109
|
+
type: string
|
|
3110
|
+
description:
|
|
3111
|
+
type: string
|
|
3112
|
+
type:
|
|
3113
|
+
type: string
|
|
3114
|
+
allowInheritance:
|
|
3115
|
+
type: boolean
|
|
3116
|
+
example:
|
|
3117
|
+
_id: 9110ebfb-97d7-4f0f-8738-8a5b014a0a8a
|
|
3118
|
+
name: Lab Test GigaSpires
|
|
3119
|
+
description: ''
|
|
3120
|
+
type: static
|
|
3121
|
+
allowInheritance: true
|
|
3122
|
+
RetrieveAllStaticGroupMembership:
|
|
3123
|
+
title: RetrieveAllStaticGroupMembership
|
|
3124
|
+
required:
|
|
3125
|
+
- _id
|
|
3126
|
+
- groupId
|
|
3127
|
+
- type
|
|
3128
|
+
- memberInfo
|
|
3129
|
+
- orgId
|
|
3130
|
+
- deviceRecordId
|
|
3131
|
+
- createTime
|
|
3132
|
+
type: object
|
|
3133
|
+
properties:
|
|
3134
|
+
_id:
|
|
3135
|
+
type: string
|
|
3136
|
+
groupId:
|
|
3137
|
+
type: string
|
|
3138
|
+
type:
|
|
3139
|
+
type: string
|
|
3140
|
+
memberInfo:
|
|
3141
|
+
type: string
|
|
3142
|
+
orgId:
|
|
3143
|
+
type: string
|
|
3144
|
+
deviceRecordId:
|
|
3145
|
+
type: string
|
|
3146
|
+
createTime:
|
|
3147
|
+
type: string
|
|
3148
|
+
example:
|
|
3149
|
+
_id: 6a747bc9-d2e6-4d99-82cd-25a84057e93e
|
|
3150
|
+
groupId: e66c8389-e62e-453e-ae84-9029783937b3
|
|
3151
|
+
type: FSAN
|
|
3152
|
+
memberInfo: CXNK001D9030
|
|
3153
|
+
orgId: '12837558'
|
|
3154
|
+
deviceRecordId: 12837558-000631-CXNK001D9030
|
|
3155
|
+
createTime: 2019-04-15T15:23:57.047Z
|
|
3156
|
+
RetrieveStaticGroupMembershipbyDevice:
|
|
3157
|
+
title: RetrieveStaticGroupMembershipbyDevice
|
|
3158
|
+
required:
|
|
3159
|
+
- _id
|
|
3160
|
+
- groupId
|
|
3161
|
+
- type
|
|
3162
|
+
- memberInfo
|
|
3163
|
+
- orgId
|
|
3164
|
+
- deviceRecordId
|
|
3165
|
+
- createTime
|
|
3166
|
+
type: object
|
|
3167
|
+
properties:
|
|
3168
|
+
_id:
|
|
3169
|
+
type: string
|
|
3170
|
+
groupId:
|
|
3171
|
+
type: string
|
|
3172
|
+
type:
|
|
3173
|
+
type: string
|
|
3174
|
+
memberInfo:
|
|
3175
|
+
type: string
|
|
3176
|
+
orgId:
|
|
3177
|
+
type: string
|
|
3178
|
+
deviceRecordId:
|
|
3179
|
+
type: string
|
|
3180
|
+
createTime:
|
|
3181
|
+
type: string
|
|
3182
|
+
example:
|
|
3183
|
+
_id: 6a747bc9-d2e6-4d99-82cd-25a84057e93e
|
|
3184
|
+
groupId: e66c8389-e62e-453e-ae84-9029783937b3
|
|
3185
|
+
type: FSAN
|
|
3186
|
+
memberInfo: CXNK001D9030
|
|
3187
|
+
orgId: '12837558'
|
|
3188
|
+
deviceRecordId: 12837558-000631-CXNK001D9030
|
|
3189
|
+
createTime: 2019-04-15T15:23:57.047Z
|
|
3190
|
+
RetrieveSingleStaticGroupMembership:
|
|
3191
|
+
title: RetrieveSingleStaticGroupMembership
|
|
3192
|
+
required:
|
|
3193
|
+
- _id
|
|
3194
|
+
- groupId
|
|
3195
|
+
- type
|
|
3196
|
+
- memberInfo
|
|
3197
|
+
- orgId
|
|
3198
|
+
- deviceRecordId
|
|
3199
|
+
- createTime
|
|
3200
|
+
type: object
|
|
3201
|
+
properties:
|
|
3202
|
+
_id:
|
|
3203
|
+
type: string
|
|
3204
|
+
groupId:
|
|
3205
|
+
type: string
|
|
3206
|
+
type:
|
|
3207
|
+
type: string
|
|
3208
|
+
memberInfo:
|
|
3209
|
+
type: string
|
|
3210
|
+
orgId:
|
|
3211
|
+
type: string
|
|
3212
|
+
deviceRecordId:
|
|
3213
|
+
type: string
|
|
3214
|
+
createTime:
|
|
3215
|
+
type: string
|
|
3216
|
+
example:
|
|
3217
|
+
_id: d74d3aa2-bbb5-4af7-8365-3262ddddf0f5
|
|
3218
|
+
groupId: e66c8389-e62e-453e-ae84-9029783937b3
|
|
3219
|
+
type: FSAN
|
|
3220
|
+
memberInfo: CXNK001D9031
|
|
3221
|
+
orgId: '12837558'
|
|
3222
|
+
deviceRecordId: 12837558-000631-CXNK001D9031
|
|
3223
|
+
createTime: 2019-05-22T15:39:07.329Z
|
|
3224
|
+
AddaDeviceorProvisioningRecordtoaStaticGroupRequest:
|
|
3225
|
+
title: AddaDeviceorProvisioningRecordtoaStaticGroupRequest
|
|
3226
|
+
required:
|
|
3227
|
+
- groupId
|
|
3228
|
+
- type
|
|
3229
|
+
- memberInfo
|
|
3230
|
+
type: object
|
|
3231
|
+
properties:
|
|
3232
|
+
groupId:
|
|
3233
|
+
type: string
|
|
3234
|
+
type:
|
|
3235
|
+
type: string
|
|
3236
|
+
memberInfo:
|
|
3237
|
+
type: string
|
|
3238
|
+
example:
|
|
3239
|
+
groupId: '{{groupId}}'
|
|
3240
|
+
type: FSAN
|
|
3241
|
+
memberInfo: '{{fsan}}'
|
|
3242
|
+
RemoveadevicefromaStaticGroupbygroupIDanddevice:
|
|
3243
|
+
title: RemoveadevicefromaStaticGroupbygroupIDanddevice
|
|
3244
|
+
required:
|
|
3245
|
+
- numberOfRecords
|
|
3246
|
+
type: object
|
|
3247
|
+
properties:
|
|
3248
|
+
numberOfRecords:
|
|
3249
|
+
type: integer
|
|
3250
|
+
format: int32
|
|
3251
|
+
example:
|
|
3252
|
+
numberOfRecords: 1
|
|
3253
|
+
securitySchemes:
|
|
3254
|
+
basic:
|
|
3255
|
+
type: http
|
|
3256
|
+
scheme: basic
|
|
3257
|
+
security:
|
|
3258
|
+
- basic: []
|
|
3259
|
+
tags:
|
|
3260
|
+
- name: Device Data Management
|
|
3261
|
+
description: >-
|
|
3262
|
+
The Device Management API allows you to view or delete entries for devices which have been discovered by the ACS.
|
|
3263
|
+
|
|
3264
|
+
|
|
3265
|
+
Note that if you are pre-provisioning a device, you will not use this API to create it. To pre-provision:
|
|
3266
|
+
|
|
3267
|
+
* Create a Subscriber record, listing the device's identifier in the locations/devices object.
|
|
3268
|
+
|
|
3269
|
+
* Create a Provisioning Record with the appropriate services or settings.
|
|
3270
|
+
|
|
3271
|
+
|
|
3272
|
+
The device record will then be created once the actual device performs its initial INFORM.
|
|
3273
|
+
|
|
3274
|
+
|
|
3275
|
+
## Device data model
|
|
3276
|
+
|
|
3277
|
+
The data model consists of these elements:
|
|
3278
|
+
|
|
3279
|
+
|
|
3280
|
+
|Attribute Name |Type |Description |Read/write|
|
|
3281
|
+
|
|
3282
|
+
|---------------|-----|------------|----------|
|
|
3283
|
+
|
|
3284
|
+
|_id |String|The internal ID string for this CPE device (auto generated by the ACS server).|
|
|
3285
|
+
|
|
3286
|
+
|manufacturer|String|The Manufacturer of the CPE, for example “Calix”.|Read-only|
|
|
3287
|
+
|
|
3288
|
+
|manufacturerOUI|String|Organizational unique identifier of the device manufacture, such as “000631” for Calix.|Read-only|
|
|
3289
|
+
|
|
3290
|
+
|productClass|String|Identifier of the class of product for which the serial number applies. That is, for a given manufacturer, this parameter is used to identify the product or class of product over which the serial number is unique.|Read-only|
|
|
3291
|
+
|
|
3292
|
+
|serialNumber|String|CPE Serial Number, for example “CXNK00186F49”|Read/write|
|
|
3293
|
+
|
|
3294
|
+
|hardwareVersion|String|A string identifying the particular CPE model and version.|Read-only|
|
|
3295
|
+
|
|
3296
|
+
|softwareVersion|String|A string identifying the software version currently installed in the CPE.|Read-only|
|
|
3297
|
+
|
|
3298
|
+
|createTime|String|Date/Time (in ISO8601 format) when this device record was created in the system (either via this API or via auto discovery). This attribute is generated by the ACS server thus read-only to the API clients.|Read-only|
|
|
3299
|
+
- name: Subscriber Management
|
|
3300
|
+
description: >
|
|
3301
|
+
Subscriber records contain demographic data such as name, address, and account information, and allow association of devices to the subscriber in order to depict how the service is delivered.
|
|
3302
|
+
|
|
3303
|
+
|
|
3304
|
+
Calix recommends creating one Subscriber record for each unique location where service is delivered. For example, if a single account holder has service at home and at a business, two distinct Subscriber records should be created, each associated only to the device(s) used to deliver service at the respective locations.
|
|
3305
|
+
|
|
3306
|
+
|
|
3307
|
+
The subscriber record contains the following elements:
|
|
3308
|
+
|
|
3309
|
+
|
|
3310
|
+
|Attribute Name |Type |Description|
|
|
3311
|
+
|
|
3312
|
+
|---------------|-------|-----------|
|
|
3313
|
+
|
|
3314
|
+
|_id |String |The internal ID string for this CPE device (auto generated by the ACS server; read-only).|
|
|
3315
|
+
|
|
3316
|
+
|customId |String |A customer ID value that can uniquely identify this subscriber location, for example, a circuit ID, or the account number plus street address. This value is displayed in Calix Support Cloud as "Subscriber ID". If a creation or update request contains a “customId” value that is already being used by an existing subscriber record, the request will be rejected with HTTP status code “409 Conflict”.|
|
|
3317
|
+
|
|
3318
|
+
|type |String |Type of the subscriber, which must be either "Residential" or "Business"|
|
|
3319
|
+
|
|
3320
|
+
|name |String |The display name to be used for this subscriber location. This value can be repeated for multiple Subscriber records.|
|
|
3321
|
+
|
|
3322
|
+
|createTime |String |Date/Time (in ISO8601 format) when this subscriber record was created in the system. This attribute is generated by the ACS server thus read-only to the API clients.|
|
|
3323
|
+
|
|
3324
|
+
|locations |JSON Array| A subscriber may have 0 or 1 location. As of May 2018, support for multiple locations is discontinued. The location is represented as a JSON object, with elements shown below.|
|
|
3325
|
+
|
|
3326
|
+
|
|
3327
|
+
## locations JSON object definition
|
|
3328
|
+
|
|
3329
|
+
|Element |Type |Description|
|
|
3330
|
+
|
|
3331
|
+
|---------------|-----------|-----------|
|
|
3332
|
+
|
|
3333
|
+
|devices |JSON Array | An array of strings, with each string in the array referring to a device installed (or to be installed) in this subscriber location. Allowed device identifiers are:<br><ul><li> The _id string of the device already defined in the system.</li><li>The FSAN Serial Number, or other serial number as reported in the TR-69 INFORM message</li><li>The Registration ID for Calix equipment</li><li>A hardware MAC address (as reported in the TR-69 INFORM). This address must contain six groups of two hexadecimal characters, separated by colons in canonical order, such as 00:06:31:00:11:22</li></ul>|
|
|
3334
|
+
|
|
3335
|
+
|address |JSON Object| Physical address of this location, consisting of elements:<br><ul><li>streetLine1</li><li>streetLine2</li><li>city</li><li>state</li><li>zip</li><li>country</li></ul>|
|
|
3336
|
+
|
|
3337
|
+
|contacts |JSON Array | Calix Support Cloud will only use a single contact object, using elements:<br><ul><li>firstName</li><li>lastName</li><li>phone</li><li>email</li></ul>|
|
|
3338
|
+
- name: Device Provisioning Record Management
|
|
3339
|
+
description: "Provisioning Records contain persistent configuration information related to a device associated to a subscriber. They can be used to pre-configure service parameters such as Wi-Fi settings, PPPoE credentials, and voice line settings.\n\nA provisioning record consists of the following elements:\n\n|Attribute Name |Type |Description|\n|-------------------|-----------|------|\n|_id |String |The internal ID of the associated CPE device, generated by the server (read-only).|\n|subscriberId |String |The _id value of the subscriber record associated with this device|\n|modelName |String |The device's model name, for example \"844G-1\" or \"GS2026E\"|\n|deviceId |String |As with the subscriber record, this ID can be one of:<br><ul><li> The _id string of the device already defined in the system.</li><li>The FSAN Serial Number, or other serial number as reported in the TR-69 INFORM message</li><li>The Registration ID for Calix equipment</li><li>A hardware MAC address (as reported in the TR-69 INFORM). This address must contain six groups of two hexadecimal characters, separated by colons in canonical order, such as 00:06:31:00:11:22</li></ul>|\n|opMode |String |The operational mode of the device, which must be one of:<br><table><tr><th>Mode</th><th>Description</th></tr><tr><td>RG</td><td>Residential Gateway</td></tr><tr><td>WAP-IGMP</td><td>Wireless Access Point<br>Applies only to 844E devices in extender mode</td></tr><tr><td>Modem</td><td>A DSL modem. Service provisioning is not allowed in this mode.</td></tr><tr><td>Managed ONT</td><td>Applies only to Calix Active Ethernet ONT 844GE. This is an advanced mode, and as such provisioning these devices must be done through the Calix Support Cloud GUI.</td></tr></table>|\n|data |JSON Object|The data object contains configuration related to the WAN High-Speed Internet (HSI) service. Supported JSON elements are:<br><table><tr><th>Element</th><th>Type</th><th>Description</th></tr><tr><td>Enable</td><td>Boolean</td><td>State of the HSI service (true = enabled, false = disabled)</td></tr>|\n|video |JSON Object|Contains a single Boolean element \"Enable\" to specify enabled/disabled state of video service.|\n|voice |JSON Object|A JSON object defining voice service settings, which includes both top-level common attributes as well as per-line settings. Settings common to both lines include:<br><table><tr><th>Element</th><th>Type</th><th>Description</th></tr><tr><td>ServiceType</td><td>String</td><td>Voice protocol, one of:<br><ul><li>SIP</li><li>H.248</li><li>MGCP</li><li>X_000631_TDMGW (Calix TDM Gateway)</li></ul></td></tr><tr><td>FaxT38</td><td>JSON Object</td><td>A JSON object with boolean element \"Enable\" describing the use of T.38 Fax Relay (true = enabled, false = disabled)</td></tr><tr><td>DialPlan</td><td>String</td><td>The internal _id of a dial plan, or the string \"system-default\". Dial plans must be configured via the GUI, and only apply to SIP services.</td></tr></table>See the Voice Configuration Per-Line section below for a detailed description of per-line settings.|\n|wifi |JSON Object|A JSON object defining Wi-Fi configuration. Each child represents a single SSID configuration. See the Wi-Fi Configuration Per-SSID section below for details.|\n\n## Wi-Fi Configuration Per-SSID\n\nWi-Fi configuration is done on a per-SSID basis, with the top-level element in the JSON object containing an integer index value. For Calix GigaCenter devices, SSID values 1-8 correspond to 2.4 GHz radio SSIDs, and 5-16 correspond to 5 GHz SSIDs. For other manufacturer devices, you will need to explore the device data model to determine the index values.\n\nThe following elements are supported beneath the top-level SSID index:\n\n|Element |Type |Description|\n|-------------------|-----------|------|\n|Enable |Boolean |Enable or disable service on the SSID|\n|SSID |String |The SSID value or Wi-Fi network name|\n|SSIDAdvertisementEnabled |Boolean |Determines whether the SSID should be broadcast (true) or hidden (false)|\n|KeyPassphrase |String |The Wi-Fi password, an ASCII value from which the keys are generated|\n|BeaconType |String |The beacon type used on this SSID. Possible values:<br><ul><li>None - No SSID present</li><li>Basic - WEP or no security</li><li>WPA - For WPA(v1)</li><li>11i - For WPA2</li><li>WPAand11i - For WPA/WPA2</li><li>BasicandWPAand11i - For WEP/WPA/WPA2</li></ul>|\n|BasicEncryptionModes|String |Encryption mode to be used with Basic 802.11, must be either \"None\" (for no security) or \"WEPEncryption\" for WEP PSK|\n|BasicAuthenticationMode|String |Authentication mode to be used with Basic 802.11, must be either \"None\" or \"EAPAuthentication\" |\n|WPAEncryptionModes|String |Encryption mode to be used with WPA, must be one of:<br><ul><li>AESEncryption</li><li>TKIPEncryption</li><li>TKIPandAESEncryption</li></ul><br><b>Note that on Calix GigaFamily devices' 5GHz radio, only AESEncryption is supported.</b>|\n|WPAAuthenticationMode|String |Authentication mode to be used with WPA, must be either \"PSKAuthentication\" or \"EAPAuthentication\" |\n|RadioEnabled |Boolean |Indicates whether or not the access point radio is enabled.<p>Please note that this attribute may not be applicable on all SSID instances. For example, this attribute is only applicable on SSID instance 1 and 9 for Calix GigaCenter/GigaHub devices, controlling the state of the 2.4GHz and 5GHz radios, respectively.|\n\n\n### Calix GigaFamily Examples\n#### WPA/WPA2 Personal\n\nCalix GigaCenter devices use WPA/WPA2-PSK as the default Wi-Fi security mode. To configure this mode, use a configuration such as:\n\n```\n \"wifi\": {\n \"1\": {\n \"BeaconType\" : \"WPAand11i\", \n \"WPAAuthenticationMode\" : \"PSKAuthentication\", \n \"WPAEncryptionModes\" : \"TKIPandAESEncryption\", \n \"IEEE11iAuthenticationMode\" : \"PSKAuthentication\", \n \"IEEE11iEncryptionModes\" : \"TKIPandAESEncryption\", \n \"BasicAuthenticationMode\" : \"None\", \n \"BasicEncryptionModes\" : \"None\", \n \"SSIDAdvertisementEnabled\": true,\n \"Enable\": true,\n \"SSID\": \"John Doe\",\n \"KeyPassphrase\": \"calix123\",\n \"RadioEnabled\": true\n }, \n \"9\": {\n \"RadioEnabled\": false\n }\n }\n```\n\n#### WPA2 Personal\nTo enable only WPA2, the BeaconType parameter needs to be set to 11i, IEEE11iAuthenticationMode must be set to PSKAuthentication, and\nIEEE11iEncryptionModes must be set to AESEncryption. The below example configures the primary SSID\non both radios to WPA2-Personal with broadcasting enabled:\n```\n\"wifi\": {\n \"1\": {\n \"BeaconType\" : \"11i\",\n \"IEEE11iAuthenticationMode\" : \"PSKAuthentication\",\n \"IEEE11iEncryptionModes\" : \" AESEncryption\",\n \"WPAAuthenticationMode\" : \"PSKAuthentication\",\n \"WPAEncryptionModes\" : \"AESEncryption\",\n \"BasicAuthenticationMode\" : \"None\",\n \"BasicEncryptionModes\" : \"None\",\n \"SSIDAdvertisementEnabled\": true,\n \"Enable\": true,\n \"SSID\": \"John Doe\",\n \"KeyPassphrase\": \"calix123\",\n \"RadioEnabled\": true\n }, \n\"9\": {\n \"BeaconType\" : \"11i\",\n \"IEEE11iAuthenticationMode\" : \"PSKAuthentication\",\n \"IEEE11iEncryptionModes\" : \" AESEncryption\",\n \"WPAAuthenticationMode\" : \"PSKAuthentication\",\n \"WPAEncryptionModes\" : \"AESEncryption\",\n \"BasicAuthenticationMode\" : \"None\",\n \"BasicEncryptionModes\" : \"None\",\n \"SSIDAdvertisementEnabled\": true,\n \"Enable\": true,\n \"SSID\": \"John Doe\",\n \"KeyPassphrase\": \"calix123\",\n \"RadioEnabled\": true\n }\n}\n```\n\n#### No Security\nTo enable an SSID with no security, such as a Guest network, use these parameters:\n* BeaconType = Basic\n* BasicAuthenticationMode = None\n* BasicEncryptionModes = None\n\nThis example sets up the designated guest network slot on the 2.4GHz radio.\n```\n\"wifi\": {\n \"1\": { <Primary SSID parameters here> },\n \"2\": {\n \"BeaconType\" : \"Basic\", \n \"BasicAuthenticationMode\" : \"None\", \n \"BasicEncryptionModes\" : \"None\", \n \"SSIDAdvertisementEnabled\": true, \n \"Enable\": true,\n \"SSID\": \"John Doe\" \n }, \n \"9\": {\n \"RadioEnabled\": false\n }\n}\n```\n\n## Voice Configuration Per-Line\nThe per-line settings section in the voice object is contained in a \"Line\" object, with each line enumerated by its port number (ie \"1\" or \"2\" for a 2-port ONT).\n\nWithin each line index element, configuration details are specified as follows.\n\n### Common settings for all protocols\n|Element |Type |Description|\n|-------------------|-----------|------|\n|Enable |String |Administrative state of the voice line, \"Enabled\" or \"Disabled\".|\n|VoiceProcessing |JSON Object |Voice processing and loss plan setting:<br><table><tr><th>Element</th><th>Type</th><th>Description</th></tr><tr><td>ReceiveGain</td><td>Integer</td><td>Gain in 0.1 dB to apply to the received voice signal after decoding.<br>Must be in the range between -120 (-12dB) and 60 (6dB).</td></tr><tr><td>TransmitGain</td><td>Integer</td><td>Gain in 01.dB to apply to the transmitted voice signal prior to encoding.<br>Must be in the range between -120 (-12dB) and 60 (6dB).</td></tr></table><br>Reference loss plans:<br><table><tr><th>Loss Plan</th><th>RX Gain</th><th>TX Gain</th></tr><tr><td>GR-909</td><td>-40 (-4dB)</td><td>-20 (-2dB)</td></tr><tr><td>ANSI</td><td>-90 (-9dB)</td><td>-30 (-3dB)</td></tr><tr><td>ETSI-PSTN</td><td>-110 (-11dB)</td><td>-40 (-4dB)</td></tr></table>|\n\n\n### SIP Line settings\n|Element |Type |Description|\n|-------------------|-----------|------|\n|SIP |JSON Object |SIP settings for the line, with the following syntax:<br><table><tr><th>Element</th><th>Type</th><th>Description</th></tr><tr><td>AuthUserName</td><td>String</td><td>SIP Username</td></tr><tr><td>AuthPassword</td><td>String</td><td>SIP Password</td></tr><tr><td>URI</td><td>String</td><td>SIP URI</td></tr></table>|\n|CallingFeatures |JSON Object |Optional endpoint-based calling features. These are generally all enabled except for Direct Connect, and features are controlled from the softswitch. Syntax:<br><table><tr><th>Element</th><th>Type</th><th>Description</th></tr><tr><td>CallerIDEnable</td><td>Boolean</td><td>Enable/Disable Caller ID</td></tr><tr><td>CallWaitingEnable</td><td>Boolean</td><td>SIPEnable/Disable Call Waiting</td></tr><tr><td>X_000631_ThreewayCallingEnable</td><td>Boolean</td><td>Enable/Disable Three-Way Calling</td></tr><tr><td>MWIEnable</td><td>Boolean</td><td>Enable/disable Message Waiting Indicator</td></tr><tr><td>X_000631_DirectConnectEnable</td><td>Boolean</td><td>Enables/Disables direct connect such as hot/warm line feature.</td></tr><tr><td>X_000631_DirectConnectNumber</td><td>String</td><td>Stores the Hot/Warm line number to be used if the direct connect feature is enabled.<br>If “X_000631_DirectConnectEnable” is set to true, this field must contain a valid phone number.</td></tr><tr><td>X_000631_DirectConnectTimer</td><td>Integer</td><td>Direct connect timer in seconds, 0 indicates hotline, none-zero indicates warm line.<br>Valid Value Range: 0-35</td></tr></table>|\n\n### H.248 Line settings\n|Element |Type |Description|\n|-------------------|-----------|------|\n|X_000631_H248 |JSON Object |H.248 settings for the line, with the following syntax:<br><table><tr><th>Element</th><th>Type</th><th>Description</th></tr><tr><td>TerminationId</td><td>String</td><td>H.248 Termination ID</td></tr></table>|\n\n### MGCP Line settings\n|Element |Type |Description|\n|-------------------|-----------|------|\n|MGCP |JSON Object |MGCP settings for the line, with the following syntax:<br><table><tr><th>Element</th><th>Type</th><th>Description</th></tr><tr><td>X_000631_GR303</td><td>Boolean</td><td>Enable/Disable GR303</td></tr></table>|\n\n### Calix TDM Gateway Line settings\n|Element |Type |Description|\n|-------------------|-----------|------|\n|X_000631_TdmGw |JSON Object |TDM Gateway settings for the line, with the following syntax:<br><table><tr><th>Element</th><th>Type</th><th>Description</th></tr><tr><td>Crv</td><td>String</td><td>Identify the line when using TDM gateway signaling.<br>For example “N1-1-IG1-1”</td></tr></table>|\n\n## Voice Provisioning Examples\n### SIP Provisioning Example\n```\n\"voice\": {\n \"ServiceType\": \"SIP\",\n \"FaxT38\": {\n \"Enable\": true\n },\n \"DialPlan\": \"system-default\",\n \"Line\": {\n \"1\": {\n \"Enable\": \"Enabled\",\n \"SIP\": {\n \"AuthUserName\": \"sip-user\",\n \"AuthPassword\": \"sip-password\",\n \"URI\": \"4001\"\n },\n \"CallingFeatures\": {\n \"CallerIDEnable\": true,\n \"CallWaitingEnable\": true,\n \"X_000631_ThreewayCallingEnable\": true,\n \"MWIEnable\": true,\n \"X_000631_DirectConnectEnable\": true,\n \"X_000631_DirectConnectNumber\": \"7077663113\",\n \"X_000631_DirectConnectTimer\": 0\n },\n \"VoiceProcessing\": {\n \"ReceiveGain\": -4,\n \"TransmitGain\": -2\n }\n }, \n \"2\": {\n \"Enable\": \"Disabled\"\n }\n }\n}\n```\n\n### H.248 Provisioning Example\n```\n\"voice\": {\n \"ServiceType\": \"H.248\",\n \"Line\": {\n \"1\": {\n \"Enable\": \"Enabled\",\n \"X_000631_H248\": {\n \"TerminationId\": \"12345\"\n },\n \"VoiceProcessing\": {\n \"ReceiveGain\": -4,\n \"TransmitGain\": -2\n }\n },\n \"2\": {\n \"Enable\": \"Disabled\"\n }\n }\n}\n```\n\n### MGCP Provisioning Example\n```\n\"voice\": {\n \"ServiceType\": \"MGCP\",\n \"Line\": {\n \"1\": {\n \"Enable\": \"Enabled\",\n \"MGCP\": {\n \"X_000631_GR303\": true\n },\n \"VoiceProcessing\": {\n \"ReceiveGain\": -4,\n \"TransmitGain\": -2\n } \n },\n \"2\": {\n \"Enable\": \"Disabled\"\n } \n }\n}\n```\n\n### TDM Gateway Provisioning Example\n```\n\"voice\": {\n \"ServiceType\": \"X_000631_TDMGW\",\n \"Line\": {\n \"1\": {\n \"Enable\": \"Enabled\",\n \"X_000631_TdmGw\": {\n \"Crv\": \"N1-1-IG1-1\"\n },\n \"VoiceProcessing\": {\n \"ReceiveGain\": -4,\n \"TransmitGain\": -2\n }\n },\n \"2\": {\n \"Enable\": \"Disabled\"\n }\n }\n}\n```"
|
|
3340
|
+
- name: TR-69 Device Operations
|
|
3341
|
+
description: >-
|
|
3342
|
+
The TR-069 Device Operation API allows the users to perform various TR-069 operations (a.k.a. “TR-069 RPC Methods”) via the Calix Support Cloud Subscriber/Device API.
|
|
3343
|
+
|
|
3344
|
+
|
|
3345
|
+
See [TR-069 Amendment 5](http://www.broadband-forum.org/technical/download/TR-069_Amendment-5.pdf) for more details on the TR-69 specification.
|
|
3346
|
+
|
|
3347
|
+
|
|
3348
|
+
All Device operations contain a JSON Object specifying the operation details:
|
|
3349
|
+
|
|
3350
|
+
|
|
3351
|
+
|Element |Type |Description|
|
|
3352
|
+
|
|
3353
|
+
|-------------------|-----------|-----------|
|
|
3354
|
+
|
|
3355
|
+
|Operation |String |One of:<br><ul><li>GetParameterValues</li><li>SetParameterValues</li><li>Reboot</li><li>FactoryReset</li></ul>|
|
|
3356
|
+
|
|
3357
|
+
|cpeIdentifier |JSON Object |A JSON object identifying the CPE device to perform the operation against. The object should contain one element to match against, with a value to match. Valid elements to match are:<br><ul><li>serialNumber</li><li>macAddress</li><li>registrationId</li></ul>For example:<br>{ "cpeIdentifier": { "serialNumber" : "CXNK00205240" } }<br>{ "cpeIdentifier": { "macAddress" : "00:11:22:33:44:55" } }|
|
|
3358
|
+
- name: Device Group Management
|
|
3359
|
+
description: "Device groups are required when performing bulk operations via scheduled workflows, and when executing discovery workflows towards newly discovered devices.\n\n\nThe Device Group API allows the north bound clients to retrieve all or one of the existing device groups. \n\nMembership in groups by a device can be managed via the API, but device group creation and deletion must be done via the graphical user interface (i.e. browser) of Calix Support Cloud.\n\n## Device Group Data Model\nA device group record has the following structure:\n\n| Element |Type | Description|\n|---------------|-----------|------------|\n|_id |String |Internal identifer for the Device Group, generated by the server upon creation.|\n|name |String |The user-visible name of the device group, which must be unique.|\n|description |String |Descriptive text related to the device group|\n|type |String |Device group type, either \"dynamic\" or \"static\". Devices may only be manually added to static groups; dynamic groups contain rules describing the devices to match automatically.|\n\n## Device Group Membership\nA device or provisioning record's membership in a Static Device Group is described by a Static Group Membership record. The membership record has the structure:\n\n| Element |Type | Description|Writable|\n|---------------|-----------|------------|----|\n|_id |String |Internal identifer for the Membership Record, generated by the server upon creation.|No|\n|groupId |String |The internal _id value of the group to which this device belongs|Yes|\n|Type |String |A string describing which device element to bind the membership to. Possible values:<ul><li>FSAN - use the FSAN serial number</li><li>Serial Number - use the device serial number reported via TR-69 INFORM</li><li>Registration ID - use a Calix Registration ID</li><li>MAC Address - use the hardware MAC of the device as reported via TR-69 INFORM</li><li>Provisioning Record - use the _id of the Provisioning Record</li></ul>|Yes|\n|memberInfo |String |This string contains the actual value used to select the group member. The format of this value corresponds to the Type field. For example, if Type = FSAN, the memberInfo string should contain an FSAN serial number.|Yes|\n|createTime |String |Creation date/time of the Group Membership record|No|\n|subscriberId |String |For static group membership records of type \"Provisioning Record\", this value contains the internal _id string of a Subscriber Record that this provisioning record is associated with|No|\n|deviceRecordId |String |If the device specified by the “memberInfo” field has already been discovered by the system, this field contains the internal _id string of the device record.|No|"
|