@itentialopensource/adapter-calix_cloud_devportal 0.1.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/.eslintignore +6 -0
- package/.eslintrc.js +18 -0
- package/.gitlab/.gitkeep +0 -0
- package/.gitlab/issue_templates/.gitkeep +0 -0
- package/.gitlab/issue_templates/Default.md +17 -0
- package/.gitlab/issue_templates/bugReportTemplate.md +76 -0
- package/.gitlab/issue_templates/featureRequestTemplate.md +14 -0
- package/.jshintrc +0 -0
- package/AUTH.md +39 -0
- package/BROKER.md +199 -0
- package/CALLS.md +639 -0
- package/CHANGELOG.md +9 -0
- package/CODE_OF_CONDUCT.md +43 -0
- package/CONTRIBUTING.md +172 -0
- package/ENHANCE.md +69 -0
- package/LICENSE +201 -0
- package/PROPERTIES.md +641 -0
- package/README.md +337 -0
- package/SUMMARY.md +9 -0
- package/SYSTEMINFO.md +11 -0
- package/TROUBLESHOOT.md +47 -0
- package/adapter.js +6609 -0
- package/adapterBase.js +1787 -0
- package/entities/.generic/action.json +214 -0
- package/entities/.generic/schema.json +28 -0
- package/entities/.system/action.json +50 -0
- package/entities/.system/mockdatafiles/getToken-default.json +6 -0
- package/entities/.system/mockdatafiles/healthcheck-default.json +3 -0
- package/entities/.system/schema.json +19 -0
- package/entities/.system/schemaTokenReq.json +75 -0
- package/entities/.system/schemaTokenResp.json +53 -0
- package/entities/AccessLogs/action.json +25 -0
- package/entities/AccessLogs/mockdatafiles/getCaleaAccessLogs-default.json +22 -0
- package/entities/AccessLogs/schema.json +19 -0
- package/entities/CallOutcome/action.json +25 -0
- package/entities/CallOutcome/mockdatafiles/getCalloutcomeSubscriberCallOutcome-default.json +20 -0
- package/entities/CallOutcome/schema.json +19 -0
- package/entities/E2EServiceDefinitionTemplate/action.json +25 -0
- package/entities/E2EServiceDefinitionTemplate/mockdatafiles/searchServiceDefinitions-default.json +35 -0
- package/entities/E2EServiceDefinitionTemplate/schema.json +19 -0
- package/entities/ManagedServiceArlo/action.json +85 -0
- package/entities/ManagedServiceArlo/schema.json +22 -0
- package/entities/ManagedServiceServify/action.json +85 -0
- package/entities/ManagedServiceServify/schema.json +22 -0
- package/entities/NetPerfTest/action.json +188 -0
- package/entities/NetPerfTest/mockdatafiles/getNetPerfTestCafIITest-default.json +44 -0
- package/entities/NetPerfTest/mockdatafiles/getNetPerfTestOoklaServer-default.json +23 -0
- package/entities/NetPerfTest/schema.json +27 -0
- package/entities/Reports/action.json +46 -0
- package/entities/Reports/mockdatafiles/getTrafficUsage-default.json +56 -0
- package/entities/Reports/mockdatafiles/getTrafficUsageForAllSubs-default.json +56 -0
- package/entities/Reports/schema.json +20 -0
- package/entities/SSID/action.json +147 -0
- package/entities/SSID/mockdatafiles/getBillingSupportOperatorSecondarynetwork-default.json +38 -0
- package/entities/SSID/mockdatafiles/getBillingSupportOperatorSsid-default.json +29 -0
- package/entities/SSID/mockdatafiles/putBillingSupportOperatorSsid-default.json +14 -0
- package/entities/SSID/schema.json +25 -0
- package/entities/ServiceDefinitions/action.json +126 -0
- package/entities/ServiceDefinitions/schema.json +24 -0
- package/entities/Subscriber/action.json +106 -0
- package/entities/Subscriber/schema.json +23 -0
- package/entities/SubscriberAppServices/action.json +66 -0
- package/entities/SubscriberAppServices/schema.json +21 -0
- package/entities/SubscriberArloServiceDeprecated/action.json +85 -0
- package/entities/SubscriberArloServiceDeprecated/schema.json +22 -0
- package/entities/SubscriberDevices/action.json +105 -0
- package/entities/SubscriberDevices/schema.json +23 -0
- package/entities/SubscriberFCCIdentifier/action.json +85 -0
- package/entities/SubscriberFCCIdentifier/schema.json +22 -0
- package/entities/SubscriberServices/action.json +147 -0
- package/entities/SubscriberServices/schema.json +25 -0
- package/entities/SubscriberServifyContractDeprecated/action.json +65 -0
- package/entities/SubscriberServifyContractDeprecated/schema.json +21 -0
- package/entities/SubscriberSmartTownWiFi/action.json +45 -0
- package/entities/SubscriberSmartTownWiFi/schema.json +20 -0
- package/error.json +190 -0
- package/package.json +88 -0
- package/pronghorn.json +6245 -0
- package/propertiesDecorators.json +14 -0
- package/propertiesSchema.json +1248 -0
- package/refs?service=git-upload-pack +0 -0
- package/report/adapterInfo.json +10 -0
- package/report/creationReport.json +755 -0
- package/report/merged-calix.json +9420 -0
- package/sampleProperties.json +196 -0
- package/test/integration/adapterTestBasicGet.js +83 -0
- package/test/integration/adapterTestConnectivity.js +93 -0
- package/test/integration/adapterTestIntegration.js +2507 -0
- package/test/unit/adapterBaseTestUnit.js +949 -0
- package/test/unit/adapterTestUnit.js +3622 -0
- package/utils/adapterInfo.js +206 -0
- package/utils/addAuth.js +94 -0
- package/utils/artifactize.js +146 -0
- package/utils/basicGet.js +50 -0
- package/utils/checkMigrate.js +63 -0
- package/utils/entitiesToDB.js +178 -0
- package/utils/findPath.js +74 -0
- package/utils/methodDocumentor.js +225 -0
- package/utils/modify.js +154 -0
- package/utils/packModificationScript.js +35 -0
- package/utils/patches2bundledDeps.js +90 -0
- package/utils/pre-commit.sh +32 -0
- package/utils/removeHooks.js +20 -0
- package/utils/setup.js +33 -0
- package/utils/tbScript.js +246 -0
- package/utils/tbUtils.js +490 -0
- package/utils/testRunner.js +298 -0
- package/utils/troubleshootingAdapter.js +195 -0
- package/workflows/README.md +3 -0
package/CALLS.md
ADDED
|
@@ -0,0 +1,639 @@
|
|
|
1
|
+
## Using this Adapter
|
|
2
|
+
|
|
3
|
+
The `adapter.js` file contains the calls the adapter makes available to the rest of the Itential Platform. The API detailed for these calls should be available through JSDOC. The following is a brief summary of the calls.
|
|
4
|
+
|
|
5
|
+
### Generic Adapter Calls
|
|
6
|
+
|
|
7
|
+
These are adapter methods that IAP or you might use. There are some other methods not shown here that might be used for internal adapter functionality.
|
|
8
|
+
|
|
9
|
+
<table border="1" class="bordered-table">
|
|
10
|
+
<tr>
|
|
11
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Method Signature</span></th>
|
|
12
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Description</span></th>
|
|
13
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Workflow?</span></th>
|
|
14
|
+
</tr>
|
|
15
|
+
<tr>
|
|
16
|
+
<td style="padding:15px">connect()</td>
|
|
17
|
+
<td style="padding:15px">This call is run when the Adapter is first loaded by he Itential Platform. It validates the properties have been provided correctly.</td>
|
|
18
|
+
<td style="padding:15px">No</td>
|
|
19
|
+
</tr>
|
|
20
|
+
<tr>
|
|
21
|
+
<td style="padding:15px">healthCheck(callback)</td>
|
|
22
|
+
<td style="padding:15px">This call ensures that the adapter can communicate with Calix_cloud_devportal. The actual call that is used is defined in the adapter properties and .system entities action.json file.</td>
|
|
23
|
+
<td style="padding:15px">No</td>
|
|
24
|
+
</tr>
|
|
25
|
+
<tr>
|
|
26
|
+
<td style="padding:15px">refreshProperties(properties)</td>
|
|
27
|
+
<td style="padding:15px">This call provides the adapter the ability to accept property changes without having to restart the adapter.</td>
|
|
28
|
+
<td style="padding:15px">No</td>
|
|
29
|
+
</tr>
|
|
30
|
+
<tr>
|
|
31
|
+
<td style="padding:15px">encryptProperty(property, technique, callback)</td>
|
|
32
|
+
<td style="padding:15px">This call will take the provided property and technique, and return the property encrypted with the technique. This allows the property to be used in the adapterProps section for the credential password so that the password does not have to be in clear text. The adapter will decrypt the property as needed for communications with Calix_cloud_devportal.</td>
|
|
33
|
+
<td style="padding:15px">No</td>
|
|
34
|
+
</tr>
|
|
35
|
+
<tr>
|
|
36
|
+
<td style="padding:15px">iapUpdateAdapterConfiguration(configFile, changes, entity, type, action, callback)</td>
|
|
37
|
+
<td style="padding:15px">This call provides the ability to update the adapter configuration from IAP - includes actions, schema, mockdata and other configurations.</td>
|
|
38
|
+
<td style="padding:15px">Yes</td>
|
|
39
|
+
</tr>
|
|
40
|
+
<tr>
|
|
41
|
+
<td style="padding:15px">iapFindAdapterPath(apiPath, callback)</td>
|
|
42
|
+
<td style="padding:15px">This call provides the ability to see if a particular API path is supported by the adapter.</td>
|
|
43
|
+
<td style="padding:15px">Yes</td>
|
|
44
|
+
</tr>
|
|
45
|
+
<tr>
|
|
46
|
+
<td style="padding:15px">iapSuspendAdapter(mode, callback)</td>
|
|
47
|
+
<td style="padding:15px">This call provides the ability to suspend the adapter and either have requests rejected or put into a queue to be processed after the adapter is resumed.</td>
|
|
48
|
+
<td style="padding:15px">Yes</td>
|
|
49
|
+
</tr>
|
|
50
|
+
<tr>
|
|
51
|
+
<td style="padding:15px">iapUnsuspendAdapter(callback)</td>
|
|
52
|
+
<td style="padding:15px">This call provides the ability to resume a suspended adapter. Any requests in queue will be processed before new requests.</td>
|
|
53
|
+
<td style="padding:15px">Yes</td>
|
|
54
|
+
</tr>
|
|
55
|
+
<tr>
|
|
56
|
+
<td style="padding:15px">iapGetAdapterQueue(callback)</td>
|
|
57
|
+
<td style="padding:15px">This call will return the requests that are waiting in the queue if throttling is enabled.</td>
|
|
58
|
+
<td style="padding:15px">Yes</td>
|
|
59
|
+
</tr>
|
|
60
|
+
<tr>
|
|
61
|
+
<td style="padding:15px">iapTroubleshootAdapter(props, persistFlag, adapter, callback)</td>
|
|
62
|
+
<td style="padding:15px">This call can be used to check on the performance of the adapter - it checks connectivity, healthcheck and basic get calls.</td>
|
|
63
|
+
<td style="padding:15px">Yes</td>
|
|
64
|
+
</tr>
|
|
65
|
+
|
|
66
|
+
<tr>
|
|
67
|
+
<td style="padding:15px">iapRunAdapterHealthcheck(adapter, callback)</td>
|
|
68
|
+
<td style="padding:15px">This call will return the results of a healthcheck.</td>
|
|
69
|
+
<td style="padding:15px">Yes</td>
|
|
70
|
+
</tr>
|
|
71
|
+
<tr>
|
|
72
|
+
<td style="padding:15px">iapRunAdapterConnectivity(callback)</td>
|
|
73
|
+
<td style="padding:15px">This call will return the results of a connectivity check.</td>
|
|
74
|
+
<td style="padding:15px">Yes</td>
|
|
75
|
+
</tr>
|
|
76
|
+
<tr>
|
|
77
|
+
<td style="padding:15px">iapRunAdapterBasicGet(callback)</td>
|
|
78
|
+
<td style="padding:15px">This call will return the results of running basic get API calls.</td>
|
|
79
|
+
<td style="padding:15px">Yes</td>
|
|
80
|
+
</tr>
|
|
81
|
+
<tr>
|
|
82
|
+
<td style="padding:15px">iapMoveAdapterEntitiesToDB(callback)</td>
|
|
83
|
+
<td style="padding:15px">This call will push the adapter configuration from the entities directory into the Adapter or IAP Database.</td>
|
|
84
|
+
<td style="padding:15px">Yes</td>
|
|
85
|
+
</tr>
|
|
86
|
+
<tr>
|
|
87
|
+
<td style="padding:15px">genericAdapterRequest(uriPath, restMethod, queryData, requestBody, addlHeaders, callback)</td>
|
|
88
|
+
<td style="padding:15px">This call allows you to provide the path to have the adapter call. It is an easy way to incorporate paths that have not been built into the adapter yet.</td>
|
|
89
|
+
<td style="padding:15px">Yes</td>
|
|
90
|
+
</tr>
|
|
91
|
+
<tr>
|
|
92
|
+
<td style="padding:15px">genericAdapterRequestNoBasePath(uriPath, restMethod, queryData, requestBody, addlHeaders, callback)</td>
|
|
93
|
+
<td style="padding:15px">This call is the same as the genericAdapterRequest only it does not add a base_path or version to the call.</td>
|
|
94
|
+
<td style="padding:15px">Yes</td>
|
|
95
|
+
</tr>
|
|
96
|
+
<tr>
|
|
97
|
+
<td style="padding:15px">iapHasAdapterEntity(entityType, entityId, callback)</td>
|
|
98
|
+
<td style="padding:15px">This call verifies the adapter has the specific entity.</td>
|
|
99
|
+
<td style="padding:15px">No</td>
|
|
100
|
+
</tr>
|
|
101
|
+
<tr>
|
|
102
|
+
<td style="padding:15px">iapVerifyAdapterCapability(entityType, actionType, entityId, callback)</td>
|
|
103
|
+
<td style="padding:15px">This call verifies the adapter can perform the provided action on the specific entity.</td>
|
|
104
|
+
<td style="padding:15px">No</td>
|
|
105
|
+
</tr>
|
|
106
|
+
<tr>
|
|
107
|
+
<td style="padding:15px">iapUpdateAdapterEntityCache()</td>
|
|
108
|
+
<td style="padding:15px">This call will update the entity cache.</td>
|
|
109
|
+
<td style="padding:15px">No</td>
|
|
110
|
+
</tr>
|
|
111
|
+
</table>
|
|
112
|
+
<br>
|
|
113
|
+
|
|
114
|
+
### Adapter Broker Calls
|
|
115
|
+
|
|
116
|
+
These are adapter methods that are used to integrate to IAP Brokers. This adapter currently supports the following broker calls.
|
|
117
|
+
|
|
118
|
+
<table border="1" class="bordered-table">
|
|
119
|
+
<tr>
|
|
120
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Method Signature</span></th>
|
|
121
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Description</span></th>
|
|
122
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Workflow?</span></th>
|
|
123
|
+
</tr>
|
|
124
|
+
<tr>
|
|
125
|
+
<td style="padding:15px">hasEntities(entityType, entityList, callback)</td>
|
|
126
|
+
<td style="padding:15px">This call is utilized by the IAP Device Broker to determine if the adapter has a specific entity and item of the entity.</td>
|
|
127
|
+
<td style="padding:15px">No</td>
|
|
128
|
+
</tr>
|
|
129
|
+
<tr>
|
|
130
|
+
<td style="padding:15px">getDevice(deviceName, callback)</td>
|
|
131
|
+
<td style="padding:15px">This call returns the details of the requested device.</td>
|
|
132
|
+
<td style="padding:15px">Yes</td>
|
|
133
|
+
</tr>
|
|
134
|
+
<tr>
|
|
135
|
+
<td style="padding:15px">getDevicesFiltered(options, callback)</td>
|
|
136
|
+
<td style="padding:15px">This call returns the list of devices that match the criteria provided in the options filter.</td>
|
|
137
|
+
<td style="padding:15px">Yes</td>
|
|
138
|
+
</tr>
|
|
139
|
+
<tr>
|
|
140
|
+
<td style="padding:15px">isAlive(deviceName, callback)</td>
|
|
141
|
+
<td style="padding:15px">This call returns whether the device status is active</td>
|
|
142
|
+
<td style="padding:15px">Yes</td>
|
|
143
|
+
</tr>
|
|
144
|
+
<tr>
|
|
145
|
+
<td style="padding:15px">getConfig(deviceName, format, callback)</td>
|
|
146
|
+
<td style="padding:15px">This call returns the configuration for the selected device.</td>
|
|
147
|
+
<td style="padding:15px">Yes</td>
|
|
148
|
+
</tr>
|
|
149
|
+
<tr>
|
|
150
|
+
<td style="padding:15px">iapGetDeviceCount(callback)</td>
|
|
151
|
+
<td style="padding:15px">This call returns the count of devices.</td>
|
|
152
|
+
<td style="padding:15px">Yes</td>
|
|
153
|
+
</tr>
|
|
154
|
+
</table>
|
|
155
|
+
<br>
|
|
156
|
+
|
|
157
|
+
|
|
158
|
+
### Specific Adapter Calls
|
|
159
|
+
|
|
160
|
+
Specific adapter calls are built based on the API of the Calix_cloud_devportal. The Adapter Builder creates the proper method comments for generating JS-DOC for the adapter. This is the best way to get information on the calls.
|
|
161
|
+
|
|
162
|
+
<table border="1" class="bordered-table">
|
|
163
|
+
<tr>
|
|
164
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Method Signature</span></th>
|
|
165
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Description</span></th>
|
|
166
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Path</span></th>
|
|
167
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Workflow?</span></th>
|
|
168
|
+
</tr>
|
|
169
|
+
<tr>
|
|
170
|
+
<td style="padding:15px">getCalloutcomeSubscriberCallOutcome(subscriberLocationId, extref, callback)</td>
|
|
171
|
+
<td style="padding:15px">Get call outcome data for Calix partners</td>
|
|
172
|
+
<td style="padding:15px">{base_path}/{version}/calloutcome/subscriber/call-outcome?{query}</td>
|
|
173
|
+
<td style="padding:15px">Yes</td>
|
|
174
|
+
</tr>
|
|
175
|
+
<tr>
|
|
176
|
+
<td style="padding:15px">getCaleaAccessLogs(subscriberId, clientMACAddress, startDate, endDate, callback)</td>
|
|
177
|
+
<td style="padding:15px">Get the Hotspot access logs by subscriber ID or client MAC address.</td>
|
|
178
|
+
<td style="padding:15px">{base_path}/{version}/calea/access-logs?{query}</td>
|
|
179
|
+
<td style="padding:15px">Yes</td>
|
|
180
|
+
</tr>
|
|
181
|
+
<tr>
|
|
182
|
+
<td style="padding:15px">getNetPerfTestCafIITest(name, callback)</td>
|
|
183
|
+
<td style="padding:15px">This is for externl troubleshooting purposes only.
|
|
184
|
+
When creating a new test or changing the name of an existing name, a client needs to make sure the name is unique within the org.
|
|
185
|
+
The uniqueness check can be done by retrieving existing test with the "name" query parameter.
|
|
186
|
+
The response body will always be a JSON array with 0 or more test instance(s).</td>
|
|
187
|
+
<td style="padding:15px">{base_path}/{version}/net-perf-test/cafIITest?{query}</td>
|
|
188
|
+
<td style="padding:15px">Yes</td>
|
|
189
|
+
</tr>
|
|
190
|
+
<tr>
|
|
191
|
+
<td style="padding:15px">postNetPerfTestCafIITest(body, callback)</td>
|
|
192
|
+
<td style="padding:15px">Create a new CAF II Test instance</td>
|
|
193
|
+
<td style="padding:15px">{base_path}/{version}/net-perf-test/cafIITest?{query}</td>
|
|
194
|
+
<td style="padding:15px">Yes</td>
|
|
195
|
+
</tr>
|
|
196
|
+
<tr>
|
|
197
|
+
<td style="padding:15px">getNetPerfTestCafIITestId(id, callback)</td>
|
|
198
|
+
<td style="padding:15px">Retrieve an existing CAF II test by _id string</td>
|
|
199
|
+
<td style="padding:15px">{base_path}/{version}/net-perf-test/cafIITest/{pathv1}?{query}</td>
|
|
200
|
+
<td style="padding:15px">Yes</td>
|
|
201
|
+
</tr>
|
|
202
|
+
<tr>
|
|
203
|
+
<td style="padding:15px">putNetPerfTestCafIITestId(id, body, callback)</td>
|
|
204
|
+
<td style="padding:15px">Misc notes:
|
|
205
|
+
- Editing is not allowed once test has started.</td>
|
|
206
|
+
<td style="padding:15px">{base_path}/{version}/net-perf-test/cafIITest/{pathv1}?{query}</td>
|
|
207
|
+
<td style="padding:15px">Yes</td>
|
|
208
|
+
</tr>
|
|
209
|
+
<tr>
|
|
210
|
+
<td style="padding:15px">deleteNetPerfTestCafIITestId(id, callback)</td>
|
|
211
|
+
<td style="padding:15px">Delete an existing CAF II test by _id string</td>
|
|
212
|
+
<td style="padding:15px">{base_path}/{version}/net-perf-test/cafIITest/{pathv1}?{query}</td>
|
|
213
|
+
<td style="padding:15px">Yes</td>
|
|
214
|
+
</tr>
|
|
215
|
+
<tr>
|
|
216
|
+
<td style="padding:15px">putNetPerfTestCafIITestIdSuspend(id, callback)</td>
|
|
217
|
+
<td style="padding:15px">Suspend an existing test</td>
|
|
218
|
+
<td style="padding:15px">{base_path}/{version}/net-perf-test/cafIITest/{pathv1}/suspend?{query}</td>
|
|
219
|
+
<td style="padding:15px">Yes</td>
|
|
220
|
+
</tr>
|
|
221
|
+
<tr>
|
|
222
|
+
<td style="padding:15px">putNetPerfTestCafIITestIdResume(id, callback)</td>
|
|
223
|
+
<td style="padding:15px">Resume an existing test</td>
|
|
224
|
+
<td style="padding:15px">{base_path}/{version}/net-perf-test/cafIITest/{pathv1}/resume?{query}</td>
|
|
225
|
+
<td style="padding:15px">Yes</td>
|
|
226
|
+
</tr>
|
|
227
|
+
<tr>
|
|
228
|
+
<td style="padding:15px">getNetPerfTestOoklaServer(country = US, callback)</td>
|
|
229
|
+
<td style="padding:15px">Retrieve all Ookla servers</td>
|
|
230
|
+
<td style="padding:15px">{base_path}/{version}/net-perf-test/ooklaServer?{query}</td>
|
|
231
|
+
<td style="padding:15px">Yes</td>
|
|
232
|
+
</tr>
|
|
233
|
+
<tr>
|
|
234
|
+
<td style="padding:15px">getNetPerfTestTestResultZipExternal(testId, callback)</td>
|
|
235
|
+
<td style="padding:15px">Click on the 'Download File -> Name the file as 'test.zip' and Save as Zip'</td>
|
|
236
|
+
<td style="padding:15px">{base_path}/{version}/net-perf-test/testResult/zip/external?{query}</td>
|
|
237
|
+
<td style="padding:15px">Yes</td>
|
|
238
|
+
</tr>
|
|
239
|
+
<tr>
|
|
240
|
+
<td style="padding:15px">getBillingSubscribers(devices, account, phone, email, region, billingStatus = Active, withDevices, withServices, offset, limit, callback)</td>
|
|
241
|
+
<td style="padding:15px">Misc Notes:
|
|
242
|
+
- When querying via the "devices" query parameter, all other query parameters will be ignored
|
|
243
|
+
- The list of associated device(s), e.g. the "devices" field, will not be included in the response. To include the "devices" field in the response, the "withDevices" query parameter must be set to true explicitly
|
|
244
|
+
- The list of service(s), e.g. the "services" field, will not be included in the response. To include the "services" field in the response, the "withServices" query parameter ...(description truncated)</td>
|
|
245
|
+
<td style="padding:15px">{base_path}/{version}/billing/subscribers?{query}</td>
|
|
246
|
+
<td style="padding:15px">Yes</td>
|
|
247
|
+
</tr>
|
|
248
|
+
<tr>
|
|
249
|
+
<td style="padding:15px">postBillingSubscribers(body, callback)</td>
|
|
250
|
+
<td style="padding:15px">Create a new subscriber.</td>
|
|
251
|
+
<td style="padding:15px">{base_path}/{version}/billing/subscribers?{query}</td>
|
|
252
|
+
<td style="padding:15px">Yes</td>
|
|
253
|
+
</tr>
|
|
254
|
+
<tr>
|
|
255
|
+
<td style="padding:15px">getBillingSubscribersSubscriberId(subscriberId, includeDeviceData, includeDecommissionedDevices, callback)</td>
|
|
256
|
+
<td style="padding:15px">Retrieve an existing subscriber by subscriberId</td>
|
|
257
|
+
<td style="padding:15px">{base_path}/{version}/billing/subscribers/{pathv1}?{query}</td>
|
|
258
|
+
<td style="padding:15px">Yes</td>
|
|
259
|
+
</tr>
|
|
260
|
+
<tr>
|
|
261
|
+
<td style="padding:15px">putBillingSubscribersSubscriberId(subscriberId, body, callback)</td>
|
|
262
|
+
<td style="padding:15px">Misc Notes:
|
|
263
|
+
- If there are currently 1 or more device(s) assocated with the subcriber, and the update request does not contain the "devices" field, the "devices" field will be preserved during the update.</td>
|
|
264
|
+
<td style="padding:15px">{base_path}/{version}/billing/subscribers/{pathv1}?{query}</td>
|
|
265
|
+
<td style="padding:15px">Yes</td>
|
|
266
|
+
</tr>
|
|
267
|
+
<tr>
|
|
268
|
+
<td style="padding:15px">deleteBillingSubscribersSubscriberId(subscriberId, callback)</td>
|
|
269
|
+
<td style="padding:15px">Delete an existing subscriber by subscriberId</td>
|
|
270
|
+
<td style="padding:15px">{base_path}/{version}/billing/subscribers/{pathv1}?{query}</td>
|
|
271
|
+
<td style="padding:15px">Yes</td>
|
|
272
|
+
</tr>
|
|
273
|
+
<tr>
|
|
274
|
+
<td style="padding:15px">getBillingSubscribersSubscriberIdDevices(subscriberId, callback)</td>
|
|
275
|
+
<td style="padding:15px">Retrieve associated device list for a subscriber location</td>
|
|
276
|
+
<td style="padding:15px">{base_path}/{version}/billing/subscribers/{pathv1}/devices?{query}</td>
|
|
277
|
+
<td style="padding:15px">Yes</td>
|
|
278
|
+
</tr>
|
|
279
|
+
<tr>
|
|
280
|
+
<td style="padding:15px">putBillingSubscribersSubscriberIdDevices(subscriberId, deviceList, callback)</td>
|
|
281
|
+
<td style="padding:15px">Update the entire list of device(s) that are associated with a subscriber with the new list in the request body</td>
|
|
282
|
+
<td style="padding:15px">{base_path}/{version}/billing/subscribers/{pathv1}/devices?{query}</td>
|
|
283
|
+
<td style="padding:15px">Yes</td>
|
|
284
|
+
</tr>
|
|
285
|
+
<tr>
|
|
286
|
+
<td style="padding:15px">postBillingSubscribersSubscriberIdDevices(subscriberId, deviceId, callback)</td>
|
|
287
|
+
<td style="padding:15px">Add a device id to an existing subscriber's associated device list</td>
|
|
288
|
+
<td style="padding:15px">{base_path}/{version}/billing/subscribers/{pathv1}/devices?{query}</td>
|
|
289
|
+
<td style="padding:15px">Yes</td>
|
|
290
|
+
</tr>
|
|
291
|
+
<tr>
|
|
292
|
+
<td style="padding:15px">putBillingSubscribersSubscriberIdDevicesDeviceId(subscriberId, deviceId, newDeviceId, callback)</td>
|
|
293
|
+
<td style="padding:15px">Replace a device ID in an exsiting subscriber's associated device list with another device ID</td>
|
|
294
|
+
<td style="padding:15px">{base_path}/{version}/billing/subscribers/{pathv1}/devices/{pathv2}?{query}</td>
|
|
295
|
+
<td style="padding:15px">Yes</td>
|
|
296
|
+
</tr>
|
|
297
|
+
<tr>
|
|
298
|
+
<td style="padding:15px">deleteBillingSubscribersSubscriberIdDevicesDeviceId(subscriberId, deviceId, callback)</td>
|
|
299
|
+
<td style="padding:15px">Delete a device from an existing subscriber's associated device list</td>
|
|
300
|
+
<td style="padding:15px">{base_path}/{version}/billing/subscribers/{pathv1}/devices/{pathv2}?{query}</td>
|
|
301
|
+
<td style="padding:15px">Yes</td>
|
|
302
|
+
</tr>
|
|
303
|
+
<tr>
|
|
304
|
+
<td style="padding:15px">getBillingSubscribersSubscriberIdFccIdentifiers(subscriberId, callback)</td>
|
|
305
|
+
<td style="padding:15px">Retrieve an existing FCC identifier by subscriberId.</td>
|
|
306
|
+
<td style="padding:15px">{base_path}/{version}/billing/subscribers/{pathv1}/fccIdentifiers?{query}</td>
|
|
307
|
+
<td style="padding:15px">Yes</td>
|
|
308
|
+
</tr>
|
|
309
|
+
<tr>
|
|
310
|
+
<td style="padding:15px">putBillingSubscribersSubscriberIdFccIdentifiers(subscriberId, body, callback)</td>
|
|
311
|
+
<td style="padding:15px">Update an existing FCC identifier by subscriberId.</td>
|
|
312
|
+
<td style="padding:15px">{base_path}/{version}/billing/subscribers/{pathv1}/fccIdentifiers?{query}</td>
|
|
313
|
+
<td style="padding:15px">Yes</td>
|
|
314
|
+
</tr>
|
|
315
|
+
<tr>
|
|
316
|
+
<td style="padding:15px">postBillingSubscribersSubscriberIdFccIdentifiers(subscriberId, body, callback)</td>
|
|
317
|
+
<td style="padding:15px">Create a new FCC identifier.</td>
|
|
318
|
+
<td style="padding:15px">{base_path}/{version}/billing/subscribers/{pathv1}/fccIdentifiers?{query}</td>
|
|
319
|
+
<td style="padding:15px">Yes</td>
|
|
320
|
+
</tr>
|
|
321
|
+
<tr>
|
|
322
|
+
<td style="padding:15px">deleteBillingSubscribersSubscriberIdFccIdentifiers(subscriberId, callback)</td>
|
|
323
|
+
<td style="padding:15px">Delete an existing FCC identifier by subscriberId.</td>
|
|
324
|
+
<td style="padding:15px">{base_path}/{version}/billing/subscribers/{pathv1}/fccIdentifiers?{query}</td>
|
|
325
|
+
<td style="padding:15px">Yes</td>
|
|
326
|
+
</tr>
|
|
327
|
+
<tr>
|
|
328
|
+
<td style="padding:15px">getBillingSubscribersSubscriberIdServices(subscriberId, summaryOnly, callback)</td>
|
|
329
|
+
<td style="padding:15px">Retrieve service list for a subscriber location</td>
|
|
330
|
+
<td style="padding:15px">{base_path}/{version}/billing/subscribers/{pathv1}/services?{query}</td>
|
|
331
|
+
<td style="padding:15px">Yes</td>
|
|
332
|
+
</tr>
|
|
333
|
+
<tr>
|
|
334
|
+
<td style="padding:15px">putBillingSubscribersSubscriberIdServices(subscriberId, ignoreDuplicates, body, callback)</td>
|
|
335
|
+
<td style="padding:15px">Update the entire list of service(s) for a subscriber location with the new list in the request body</td>
|
|
336
|
+
<td style="padding:15px">{base_path}/{version}/billing/subscribers/{pathv1}/services?{query}</td>
|
|
337
|
+
<td style="padding:15px">Yes</td>
|
|
338
|
+
</tr>
|
|
339
|
+
<tr>
|
|
340
|
+
<td style="padding:15px">postBillingSubscribersSubscriberIdServices(subscriberId, body, callback)</td>
|
|
341
|
+
<td style="padding:15px">Each subscriber location can only have up to 1 data service, up to 1 video service, and up to 1 voice service.
|
|
342
|
+
|
|
343
|
+
When you want to apply the service, a.k.a activate the service, you must input `"activate": true` with appropriate parameters.</td>
|
|
344
|
+
<td style="padding:15px">{base_path}/{version}/billing/subscribers/{pathv1}/services?{query}</td>
|
|
345
|
+
<td style="padding:15px">Yes</td>
|
|
346
|
+
</tr>
|
|
347
|
+
<tr>
|
|
348
|
+
<td style="padding:15px">getBillingSubscribersSubscriberIdServicesServiceId(subscriberId, serviceId, callback)</td>
|
|
349
|
+
<td style="padding:15px">Retrieve an existing service instance for a subscriber location by service instance id</td>
|
|
350
|
+
<td style="padding:15px">{base_path}/{version}/billing/subscribers/{pathv1}/services/{pathv2}?{query}</td>
|
|
351
|
+
<td style="padding:15px">Yes</td>
|
|
352
|
+
</tr>
|
|
353
|
+
<tr>
|
|
354
|
+
<td style="padding:15px">putBillingSubscribersSubscriberIdServicesServiceId(subscriberId, serviceId, body, callback)</td>
|
|
355
|
+
<td style="padding:15px">Update an existing service instance for a subscriber location by service instance id.</td>
|
|
356
|
+
<td style="padding:15px">{base_path}/{version}/billing/subscribers/{pathv1}/services/{pathv2}?{query}</td>
|
|
357
|
+
<td style="padding:15px">Yes</td>
|
|
358
|
+
</tr>
|
|
359
|
+
<tr>
|
|
360
|
+
<td style="padding:15px">deleteBillingSubscribersSubscriberIdServicesServiceId(subscriberId, serviceId, callback)</td>
|
|
361
|
+
<td style="padding:15px">Delete an existing service instance from a subscriber location by service instance id</td>
|
|
362
|
+
<td style="padding:15px">{base_path}/{version}/billing/subscribers/{pathv1}/services/{pathv2}?{query}</td>
|
|
363
|
+
<td style="padding:15px">Yes</td>
|
|
364
|
+
</tr>
|
|
365
|
+
<tr>
|
|
366
|
+
<td style="padding:15px">getBillingSubscribersSubscriberIdServicesStatus(subscriberId, callback)</td>
|
|
367
|
+
<td style="padding:15px">Status of all existing service(s) for a subscriber</td>
|
|
368
|
+
<td style="padding:15px">{base_path}/{version}/billing/subscribers/{pathv1}/services/status?{query}</td>
|
|
369
|
+
<td style="padding:15px">Yes</td>
|
|
370
|
+
</tr>
|
|
371
|
+
<tr>
|
|
372
|
+
<td style="padding:15px">getBillingSubscribersSubscriberIdAppServices(subscriberId, callback)</td>
|
|
373
|
+
<td style="padding:15px">Retrieve all existing application services for a subscriber</td>
|
|
374
|
+
<td style="padding:15px">{base_path}/{version}/billing/subscribers/{pathv1}/appServices?{query}</td>
|
|
375
|
+
<td style="padding:15px">Yes</td>
|
|
376
|
+
</tr>
|
|
377
|
+
<tr>
|
|
378
|
+
<td style="padding:15px">getBillingSubscribersSubscriberIdAppServicesAppServiceName(subscriberId, appServiceName = ProtectIQ, callback)</td>
|
|
379
|
+
<td style="padding:15px">Retrieve an existing application service setting by subscriberId and service name</td>
|
|
380
|
+
<td style="padding:15px">{base_path}/{version}/billing/subscribers/{pathv1}/appServices/{pathv2}?{query}</td>
|
|
381
|
+
<td style="padding:15px">Yes</td>
|
|
382
|
+
</tr>
|
|
383
|
+
<tr>
|
|
384
|
+
<td style="padding:15px">putBillingSubscribersSubscriberIdAppServicesAppServiceName(subscriberId, appServiceName = ProtectIQ, body, callback)</td>
|
|
385
|
+
<td style="padding:15px">Misc Notes:
|
|
386
|
+
- If there is no existing app service found for the specified app service name, it will be created.
|
|
387
|
+
- If there is already existing app service for the specified app service name, it will be updated.</td>
|
|
388
|
+
<td style="padding:15px">{base_path}/{version}/billing/subscribers/{pathv1}/appServices/{pathv2}?{query}</td>
|
|
389
|
+
<td style="padding:15px">Yes</td>
|
|
390
|
+
</tr>
|
|
391
|
+
<tr>
|
|
392
|
+
<td style="padding:15px">getBillingSubscribersSubscriberIdArloService(subscriberId, callback)</td>
|
|
393
|
+
<td style="padding:15px">Retrieve the Arlo Service Info for a subscriber.</td>
|
|
394
|
+
<td style="padding:15px">{base_path}/{version}/billing/subscribers/{pathv1}/arlo-service?{query}</td>
|
|
395
|
+
<td style="padding:15px">Yes</td>
|
|
396
|
+
</tr>
|
|
397
|
+
<tr>
|
|
398
|
+
<td style="padding:15px">putBillingSubscribersSubscriberIdArloService(subscriberId, body, callback)</td>
|
|
399
|
+
<td style="padding:15px">Update the Arlo Service for a subsccriber</td>
|
|
400
|
+
<td style="padding:15px">{base_path}/{version}/billing/subscribers/{pathv1}/arlo-service?{query}</td>
|
|
401
|
+
<td style="padding:15px">Yes</td>
|
|
402
|
+
</tr>
|
|
403
|
+
<tr>
|
|
404
|
+
<td style="padding:15px">postBillingSubscribersSubscriberIdArloService(subscriberId, body, callback)</td>
|
|
405
|
+
<td style="padding:15px">Create the Arlo Service for a subscriber</td>
|
|
406
|
+
<td style="padding:15px">{base_path}/{version}/billing/subscribers/{pathv1}/arlo-service?{query}</td>
|
|
407
|
+
<td style="padding:15px">Yes</td>
|
|
408
|
+
</tr>
|
|
409
|
+
<tr>
|
|
410
|
+
<td style="padding:15px">deleteBillingSubscribersSubscriberIdArloService(subscriberId, callback)</td>
|
|
411
|
+
<td style="padding:15px">Delete the Arlo Service for a subscriber</td>
|
|
412
|
+
<td style="padding:15px">{base_path}/{version}/billing/subscribers/{pathv1}/arlo-service?{query}</td>
|
|
413
|
+
<td style="padding:15px">Yes</td>
|
|
414
|
+
</tr>
|
|
415
|
+
<tr>
|
|
416
|
+
<td style="padding:15px">getBillingSubscribersSubscriberIdServifyContract(subscriberId, callback)</td>
|
|
417
|
+
<td style="padding:15px">Retrieve the Servify Contract for a subscriber.</td>
|
|
418
|
+
<td style="padding:15px">{base_path}/{version}/billing/subscribers/{pathv1}/servify-contract?{query}</td>
|
|
419
|
+
<td style="padding:15px">Yes</td>
|
|
420
|
+
</tr>
|
|
421
|
+
<tr>
|
|
422
|
+
<td style="padding:15px">postBillingSubscribersSubscriberIdServifyContract(subscriberId, body, callback)</td>
|
|
423
|
+
<td style="padding:15px">Create Servify Contract for one subscriber</td>
|
|
424
|
+
<td style="padding:15px">{base_path}/{version}/billing/subscribers/{pathv1}/servify-contract?{query}</td>
|
|
425
|
+
<td style="padding:15px">Yes</td>
|
|
426
|
+
</tr>
|
|
427
|
+
<tr>
|
|
428
|
+
<td style="padding:15px">deleteBillingSubscribersSubscriberIdServifyContract(subscriberId, reasonCode, callback)</td>
|
|
429
|
+
<td style="padding:15px">Delete the Servify Contract for a subscriber</td>
|
|
430
|
+
<td style="padding:15px">{base_path}/{version}/billing/subscribers/{pathv1}/servify-contract?{query}</td>
|
|
431
|
+
<td style="padding:15px">Yes</td>
|
|
432
|
+
</tr>
|
|
433
|
+
<tr>
|
|
434
|
+
<td style="padding:15px">getBillingSubscribersSubscriberIdManagedServiceArlo(subscriberId, callback)</td>
|
|
435
|
+
<td style="padding:15px">Retrieve the Arlo Service Info for a subscriber.</td>
|
|
436
|
+
<td style="padding:15px">{base_path}/{version}/billing/subscribers/{pathv1}/managed-service/arlo?{query}</td>
|
|
437
|
+
<td style="padding:15px">Yes</td>
|
|
438
|
+
</tr>
|
|
439
|
+
<tr>
|
|
440
|
+
<td style="padding:15px">putBillingSubscribersSubscriberIdManagedServiceArlo(subscriberId, body, callback)</td>
|
|
441
|
+
<td style="padding:15px">Update the Arlo Service for a subsccriber</td>
|
|
442
|
+
<td style="padding:15px">{base_path}/{version}/billing/subscribers/{pathv1}/managed-service/arlo?{query}</td>
|
|
443
|
+
<td style="padding:15px">Yes</td>
|
|
444
|
+
</tr>
|
|
445
|
+
<tr>
|
|
446
|
+
<td style="padding:15px">postBillingSubscribersSubscriberIdManagedServiceArlo(subscriberId, body, callback)</td>
|
|
447
|
+
<td style="padding:15px">Create an Arlo Service account for the subscriber specified by the `subscriberId`.
|
|
448
|
+
The attributes of Arlo Service account are from standardized subscriber attributes, e.g.
|
|
449
|
+
* name
|
|
450
|
+
* firstName
|
|
451
|
+
* lastName
|
|
452
|
+
* **email**
|
|
453
|
+
* phone
|
|
454
|
+
* serviceAddress
|
|
455
|
+
* street
|
|
456
|
+
* streetLine2
|
|
457
|
+
* city
|
|
458
|
+
* state
|
|
459
|
+
* postcode
|
|
460
|
+
* country
|
|
461
|
+
* businessName
|
|
462
|
+
* billingStreet
|
|
463
|
+
* billingStreetLine2
|
|
464
|
+
* billingCity
|
|
465
|
+
* billingState
|
|
466
|
+
* billingPostcode
|
|
467
|
+
* billingCountry
|
|
468
|
+
* serviceCategory
|
|
469
|
+
* **planCode**
|
|
470
|
+
|
|
471
|
+
Highlighte...(description truncated)</td>
|
|
472
|
+
<td style="padding:15px">{base_path}/{version}/billing/subscribers/{pathv1}/managed-service/arlo?{query}</td>
|
|
473
|
+
<td style="padding:15px">Yes</td>
|
|
474
|
+
</tr>
|
|
475
|
+
<tr>
|
|
476
|
+
<td style="padding:15px">deleteBillingSubscribersSubscriberIdManagedServiceArlo(subscriberId, callback)</td>
|
|
477
|
+
<td style="padding:15px">Delete the Arlo Service for a subscriber</td>
|
|
478
|
+
<td style="padding:15px">{base_path}/{version}/billing/subscribers/{pathv1}/managed-service/arlo?{query}</td>
|
|
479
|
+
<td style="padding:15px">Yes</td>
|
|
480
|
+
</tr>
|
|
481
|
+
<tr>
|
|
482
|
+
<td style="padding:15px">getBillingSubscribersSubscriberIdManagedServiceServify(subscriberId, callback)</td>
|
|
483
|
+
<td style="padding:15px">Retrieve the Servify Contract for a subscriber.</td>
|
|
484
|
+
<td style="padding:15px">{base_path}/{version}/billing/subscribers/{pathv1}/managed-service/servify?{query}</td>
|
|
485
|
+
<td style="padding:15px">Yes</td>
|
|
486
|
+
</tr>
|
|
487
|
+
<tr>
|
|
488
|
+
<td style="padding:15px">putBillingSubscribersSubscriberIdManagedServiceServify(subscriberId, planCode = SERVIFYCAREBRONZE, callback)</td>
|
|
489
|
+
<td style="padding:15px">Update Servify Contract Plan for a subscriber</td>
|
|
490
|
+
<td style="padding:15px">{base_path}/{version}/billing/subscribers/{pathv1}/managed-service/servify?{query}</td>
|
|
491
|
+
<td style="padding:15px">Yes</td>
|
|
492
|
+
</tr>
|
|
493
|
+
<tr>
|
|
494
|
+
<td style="padding:15px">postBillingSubscribersSubscriberIdManagedServiceServify(subscriberId, body, callback)</td>
|
|
495
|
+
<td style="padding:15px">Create a Servify Contract for the subscriber specified by the `subscriberId`.
|
|
496
|
+
The attributes of Servify Contract are from standardized subscriber attributes, e.g.
|
|
497
|
+
* name
|
|
498
|
+
* **firstName**
|
|
499
|
+
* **lastName**
|
|
500
|
+
* **email**
|
|
501
|
+
* phone
|
|
502
|
+
* **serviceAddress**
|
|
503
|
+
* street
|
|
504
|
+
* streetLine2
|
|
505
|
+
* **city**
|
|
506
|
+
* **state**
|
|
507
|
+
* **postcode**
|
|
508
|
+
* country
|
|
509
|
+
* businessName
|
|
510
|
+
* billingStreet
|
|
511
|
+
* billingStreetLine2
|
|
512
|
+
* billingCity
|
|
513
|
+
* billingState
|
|
514
|
+
* billingPostcode
|
|
515
|
+
* billingCountry
|
|
516
|
+
* serviceCategory
|
|
517
|
+
* **planCod...(description truncated)</td>
|
|
518
|
+
<td style="padding:15px">{base_path}/{version}/billing/subscribers/{pathv1}/managed-service/servify?{query}</td>
|
|
519
|
+
<td style="padding:15px">Yes</td>
|
|
520
|
+
</tr>
|
|
521
|
+
<tr>
|
|
522
|
+
<td style="padding:15px">deleteBillingSubscribersSubscriberIdManagedServiceServify(subscriberId, reasonCode, callback)</td>
|
|
523
|
+
<td style="padding:15px">Delete the Servify Contract for a subscriber</td>
|
|
524
|
+
<td style="padding:15px">{base_path}/{version}/billing/subscribers/{pathv1}/managed-service/servify?{query}</td>
|
|
525
|
+
<td style="padding:15px">Yes</td>
|
|
526
|
+
</tr>
|
|
527
|
+
<tr>
|
|
528
|
+
<td style="padding:15px">getBillingSubscribersSubscriberIdSmarttownWifiSubscriber(subscriberId, callback)</td>
|
|
529
|
+
<td style="padding:15px">Retrieve the subscriber membership of SmartTown Wi-Fi for a subscriber.</td>
|
|
530
|
+
<td style="padding:15px">{base_path}/{version}/billing/subscribers/{pathv1}/smarttown-wifi/subscriber?{query}</td>
|
|
531
|
+
<td style="padding:15px">Yes</td>
|
|
532
|
+
</tr>
|
|
533
|
+
<tr>
|
|
534
|
+
<td style="padding:15px">putBillingSubscribersSubscriberIdSmarttownWifiSubscriber(subscriberId, body, callback)</td>
|
|
535
|
+
<td style="padding:15px">Create/Update subscriber membershp of SmartTown Wi-Fi for a subscriber</td>
|
|
536
|
+
<td style="padding:15px">{base_path}/{version}/billing/subscribers/{pathv1}/smarttown-wifi/subscriber?{query}</td>
|
|
537
|
+
<td style="padding:15px">Yes</td>
|
|
538
|
+
</tr>
|
|
539
|
+
<tr>
|
|
540
|
+
<td style="padding:15px">getBillingServiceDefinitions(callback)</td>
|
|
541
|
+
<td style="padding:15px">Retrieve all service definition(s)</td>
|
|
542
|
+
<td style="padding:15px">{base_path}/{version}/billing/serviceDefinitions?{query}</td>
|
|
543
|
+
<td style="padding:15px">Yes</td>
|
|
544
|
+
</tr>
|
|
545
|
+
<tr>
|
|
546
|
+
<td style="padding:15px">putBillingServiceDefinitions(body, callback)</td>
|
|
547
|
+
<td style="padding:15px">Update all service definition(s) via a single request</td>
|
|
548
|
+
<td style="padding:15px">{base_path}/{version}/billing/serviceDefinitions?{query}</td>
|
|
549
|
+
<td style="padding:15px">Yes</td>
|
|
550
|
+
</tr>
|
|
551
|
+
<tr>
|
|
552
|
+
<td style="padding:15px">postBillingServiceDefinitions(body, callback)</td>
|
|
553
|
+
<td style="padding:15px">Create a new service definition.</td>
|
|
554
|
+
<td style="padding:15px">{base_path}/{version}/billing/serviceDefinitions?{query}</td>
|
|
555
|
+
<td style="padding:15px">Yes</td>
|
|
556
|
+
</tr>
|
|
557
|
+
<tr>
|
|
558
|
+
<td style="padding:15px">getBillingServiceDefinitionsServiceDefinitionId(serviceDefinitionId, callback)</td>
|
|
559
|
+
<td style="padding:15px">Retrieve an existing service definition by usoc.</td>
|
|
560
|
+
<td style="padding:15px">{base_path}/{version}/billing/serviceDefinitions/{pathv1}?{query}</td>
|
|
561
|
+
<td style="padding:15px">Yes</td>
|
|
562
|
+
</tr>
|
|
563
|
+
<tr>
|
|
564
|
+
<td style="padding:15px">putBillingServiceDefinitionsServiceDefinitionId(serviceDefinitionId, body, callback)</td>
|
|
565
|
+
<td style="padding:15px">Update an existing service definition by id.</td>
|
|
566
|
+
<td style="padding:15px">{base_path}/{version}/billing/serviceDefinitions/{pathv1}?{query}</td>
|
|
567
|
+
<td style="padding:15px">Yes</td>
|
|
568
|
+
</tr>
|
|
569
|
+
<tr>
|
|
570
|
+
<td style="padding:15px">deleteBillingServiceDefinitionsServiceDefinitionId(serviceDefinitionId, callback)</td>
|
|
571
|
+
<td style="padding:15px">Delete an existing service definition by usoc.</td>
|
|
572
|
+
<td style="padding:15px">{base_path}/{version}/billing/serviceDefinitions/{pathv1}?{query}</td>
|
|
573
|
+
<td style="padding:15px">Yes</td>
|
|
574
|
+
</tr>
|
|
575
|
+
<tr>
|
|
576
|
+
<td style="padding:15px">getBillingSupportOperatorSsid(serialNumber, subscriberId, callback)</td>
|
|
577
|
+
<td style="padding:15px">Retrieve ssid by subscriberId or RG serialNumber</td>
|
|
578
|
+
<td style="padding:15px">{base_path}/{version}/billing/support/operator/ssid?{query}</td>
|
|
579
|
+
<td style="padding:15px">Yes</td>
|
|
580
|
+
</tr>
|
|
581
|
+
<tr>
|
|
582
|
+
<td style="padding:15px">putBillingSupportOperatorSsid(serialNumber, subscriberId, body, callback)</td>
|
|
583
|
+
<td style="padding:15px">Update ssid by subscriberId or RG serialNumber</td>
|
|
584
|
+
<td style="padding:15px">{base_path}/{version}/billing/support/operator/ssid?{query}</td>
|
|
585
|
+
<td style="padding:15px">Yes</td>
|
|
586
|
+
</tr>
|
|
587
|
+
<tr>
|
|
588
|
+
<td style="padding:15px">getBillingSupportOperatorSecondarynetworkAvailability(serialNumber, subscriberId, callback)</td>
|
|
589
|
+
<td style="padding:15px">Retrieve secondarynetwork availability by subscriberId or RG serialNumber</td>
|
|
590
|
+
<td style="padding:15px">{base_path}/{version}/billing/support/operator/secondarynetwork/availability?{query}</td>
|
|
591
|
+
<td style="padding:15px">Yes</td>
|
|
592
|
+
</tr>
|
|
593
|
+
<tr>
|
|
594
|
+
<td style="padding:15px">getBillingSupportOperatorSecondarynetwork(serialNumber, subscriberId, callback)</td>
|
|
595
|
+
<td style="padding:15px">* encryptionType (0 none, 1 WPA2-Personal, 2 WPA-WPA2-Personal, 5 WPA2-WPA3-Personal, 6 WPA3-Personal)
|
|
596
|
+
* type (1 guest, 2 WFH, 3 custom unified, 4 custom 2.4GHz, 5 custom 5GHz, 6 custom 6GHz)</td>
|
|
597
|
+
<td style="padding:15px">{base_path}/{version}/billing/support/operator/secondarynetwork?{query}</td>
|
|
598
|
+
<td style="padding:15px">Yes</td>
|
|
599
|
+
</tr>
|
|
600
|
+
<tr>
|
|
601
|
+
<td style="padding:15px">putBillingSupportOperatorSecondarynetwork(serialNumber, subscriberId, body, callback)</td>
|
|
602
|
+
<td style="padding:15px">* encryptionType (0 none, 1 WPA2-Personal, 2 WPA-WPA2-Personal, 5 WPA2-WPA3-Personal, 6 WPA3-Personal)
|
|
603
|
+
* type (1 guest, 2 WFH, 3 custom unified, 4 custom 2.4GHz, 5 custom 5GHz, 6 custom 6GHz)</td>
|
|
604
|
+
<td style="padding:15px">{base_path}/{version}/billing/support/operator/secondarynetwork?{query}</td>
|
|
605
|
+
<td style="padding:15px">Yes</td>
|
|
606
|
+
</tr>
|
|
607
|
+
<tr>
|
|
608
|
+
<td style="padding:15px">postBillingSupportOperatorSecondarynetwork(serialNumber, subscriberId, body, callback)</td>
|
|
609
|
+
<td style="padding:15px">* encryptionType (0 none, 1 WPA2-Personal, 2 WPA-WPA2-Personal, 5 WPA2-WPA3-Personal, 6 WPA3-Personal)
|
|
610
|
+
* type (1 guest, 2 WFH, 3 custom unified, 4 custom 2.4GHz, 5 custom 5GHz, 6 custom 6GHz)</td>
|
|
611
|
+
<td style="padding:15px">{base_path}/{version}/billing/support/operator/secondarynetwork?{query}</td>
|
|
612
|
+
<td style="padding:15px">Yes</td>
|
|
613
|
+
</tr>
|
|
614
|
+
<tr>
|
|
615
|
+
<td style="padding:15px">deleteBillingSupportOperatorSecondarynetwork(serialNumber, subscriberId, body, callback)</td>
|
|
616
|
+
<td style="padding:15px">Delete secondarynetwork by subscriberId or RG serialNumber</td>
|
|
617
|
+
<td style="padding:15px">{base_path}/{version}/billing/support/operator/secondarynetwork?{query}</td>
|
|
618
|
+
<td style="padding:15px">Yes</td>
|
|
619
|
+
</tr>
|
|
620
|
+
<tr>
|
|
621
|
+
<td style="padding:15px">searchServiceDefinitions(name, serviceType = DATA, callback)</td>
|
|
622
|
+
<td style="padding:15px">The GET method will retrieve the details of the service definitions</td>
|
|
623
|
+
<td style="padding:15px">{base_path}/{version}/billing/e2e/serviceDefinitions?{query}</td>
|
|
624
|
+
<td style="padding:15px">Yes</td>
|
|
625
|
+
</tr>
|
|
626
|
+
<tr>
|
|
627
|
+
<td style="padding:15px">getTrafficUsage(granularity, startTime, endTime, subscriber, callback)</td>
|
|
628
|
+
<td style="padding:15px">Get subscriber traffic usage</td>
|
|
629
|
+
<td style="padding:15px">{base_path}/{version}/insights/subscribers/{pathv1}/trafficusage?{query}</td>
|
|
630
|
+
<td style="padding:15px">Yes</td>
|
|
631
|
+
</tr>
|
|
632
|
+
<tr>
|
|
633
|
+
<td style="padding:15px">getTrafficUsageForAllSubs(granularity, startTime, endTime, offset, limit, callback)</td>
|
|
634
|
+
<td style="padding:15px">Get subscriber traffic usage for all subscribers</td>
|
|
635
|
+
<td style="padding:15px">{base_path}/{version}/insights/subscriberstrafficusage?{query}</td>
|
|
636
|
+
<td style="padding:15px">Yes</td>
|
|
637
|
+
</tr>
|
|
638
|
+
</table>
|
|
639
|
+
<br>
|