@itentialopensource/adapter-servicenow 2.6.1 → 2.6.2
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/CALLS.md +891 -20
- package/CHANGELOG.md +8 -0
- package/adapterBase.js +103 -0
- package/metadata.json +3 -3
- package/package.json +4 -4
- package/propertiesSchema.json +64 -0
- package/refs?service=git-upload-pack +0 -0
- package/report/adapterInfo.json +5 -5
- package/report/updateReport1694433477793.json +120 -0
- package/sampleProperties.json +12 -0
- package/test/unit/adapterBaseTestUnit.js +6 -6
- package/test/unit/adapterTestUnit.js +5 -0
- package/utils/methodDocumentor.js +57 -22
package/CALLS.md
CHANGED
|
@@ -37,11 +37,6 @@ These are adapter methods that IAP or you might use. There are some other method
|
|
|
37
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
38
|
<td style="padding:15px">Yes</td>
|
|
39
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
40
|
<tr>
|
|
46
41
|
<td style="padding:15px">iapSuspendAdapter(mode, callback)</td>
|
|
47
42
|
<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>
|
|
@@ -57,12 +52,16 @@ These are adapter methods that IAP or you might use. There are some other method
|
|
|
57
52
|
<td style="padding:15px">This call will return the requests that are waiting in the queue if throttling is enabled.</td>
|
|
58
53
|
<td style="padding:15px">Yes</td>
|
|
59
54
|
</tr>
|
|
55
|
+
<tr>
|
|
56
|
+
<td style="padding:15px">iapFindAdapterPath(apiPath, callback)</td>
|
|
57
|
+
<td style="padding:15px">This call provides the ability to see if a particular API path is supported by the adapter.</td>
|
|
58
|
+
<td style="padding:15px">Yes</td>
|
|
59
|
+
</tr>
|
|
60
60
|
<tr>
|
|
61
61
|
<td style="padding:15px">iapTroubleshootAdapter(props, persistFlag, adapter, callback)</td>
|
|
62
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
63
|
<td style="padding:15px">Yes</td>
|
|
64
64
|
</tr>
|
|
65
|
-
|
|
66
65
|
<tr>
|
|
67
66
|
<td style="padding:15px">iapRunAdapterHealthcheck(adapter, callback)</td>
|
|
68
67
|
<td style="padding:15px">This call will return the results of a healthcheck.</td>
|
|
@@ -83,6 +82,21 @@ These are adapter methods that IAP or you might use. There are some other method
|
|
|
83
82
|
<td style="padding:15px">This call will push the adapter configuration from the entities directory into the Adapter or IAP Database.</td>
|
|
84
83
|
<td style="padding:15px">Yes</td>
|
|
85
84
|
</tr>
|
|
85
|
+
<tr>
|
|
86
|
+
<td style="padding:15px">iapDeactivateTasks(tasks, callback)</td>
|
|
87
|
+
<td style="padding:15px">This call provides the ability to remove tasks from the adapter.</td>
|
|
88
|
+
<td style="padding:15px">Yes</td>
|
|
89
|
+
</tr>
|
|
90
|
+
<tr>
|
|
91
|
+
<td style="padding:15px">iapActivateTasks(tasks, callback)</td>
|
|
92
|
+
<td style="padding:15px">This call provides the ability to add deactivated tasks back into the adapter.</td>
|
|
93
|
+
<td style="padding:15px">Yes</td>
|
|
94
|
+
</tr>
|
|
95
|
+
<tr>
|
|
96
|
+
<td style="padding:15px">iapExpandedGenericAdapterRequest(metadata, uriPath, restMethod, pathVars, queryData, requestBody, addlHeaders, callback)</td>
|
|
97
|
+
<td style="padding:15px">This is an expanded Generic Call. The metadata object allows us to provide many new capabilities within the generic request.</td>
|
|
98
|
+
<td style="padding:15px">Yes</td>
|
|
99
|
+
</tr>
|
|
86
100
|
<tr>
|
|
87
101
|
<td style="padding:15px">genericAdapterRequest(uriPath, restMethod, queryData, requestBody, addlHeaders, callback)</td>
|
|
88
102
|
<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>
|
|
@@ -94,19 +108,42 @@ These are adapter methods that IAP or you might use. There are some other method
|
|
|
94
108
|
<td style="padding:15px">Yes</td>
|
|
95
109
|
</tr>
|
|
96
110
|
<tr>
|
|
97
|
-
<td style="padding:15px">
|
|
98
|
-
<td style="padding:15px">
|
|
99
|
-
<td style="padding:15px">
|
|
111
|
+
<td style="padding:15px">iapRunAdapterLint(callback)</td>
|
|
112
|
+
<td style="padding:15px">Runs lint on the addapter and provides the information back.</td>
|
|
113
|
+
<td style="padding:15px">Yes</td>
|
|
100
114
|
</tr>
|
|
101
115
|
<tr>
|
|
102
|
-
<td style="padding:15px">
|
|
103
|
-
<td style="padding:15px">
|
|
104
|
-
<td style="padding:15px">
|
|
116
|
+
<td style="padding:15px">iapRunAdapterTests(callback)</td>
|
|
117
|
+
<td style="padding:15px">Runs baseunit and unit tests on the adapter and provides the information back.</td>
|
|
118
|
+
<td style="padding:15px">Yes</td>
|
|
105
119
|
</tr>
|
|
106
120
|
<tr>
|
|
107
|
-
<td style="padding:15px">
|
|
108
|
-
<td style="padding:15px">This call
|
|
109
|
-
<td style="padding:15px">
|
|
121
|
+
<td style="padding:15px">iapGetAdapterInventory(callback)</td>
|
|
122
|
+
<td style="padding:15px">This call provides some inventory related information about the adapter.</td>
|
|
123
|
+
<td style="padding:15px">Yes</td>
|
|
124
|
+
</tr>
|
|
125
|
+
</table>
|
|
126
|
+
<br>
|
|
127
|
+
|
|
128
|
+
### Adapter Cache Calls
|
|
129
|
+
|
|
130
|
+
These are adapter methods that are used for adapter caching. If configured, the adapter will cache based on the interval provided. However, you can force a population of the cache manually as well.
|
|
131
|
+
|
|
132
|
+
<table border="1" class="bordered-table">
|
|
133
|
+
<tr>
|
|
134
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Method Signature</span></th>
|
|
135
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Description</span></th>
|
|
136
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Workflow?</span></th>
|
|
137
|
+
</tr>
|
|
138
|
+
<tr>
|
|
139
|
+
<td style="padding:15px">iapPopulateEntityCache(entityTypes, callback)</td>
|
|
140
|
+
<td style="padding:15px">This call populates the adapter cache.</td>
|
|
141
|
+
<td style="padding:15px">Yes</td>
|
|
142
|
+
</tr>
|
|
143
|
+
<tr>
|
|
144
|
+
<td style="padding:15px">iapRetrieveEntitiesCache(entityType, options, callback)</td>
|
|
145
|
+
<td style="padding:15px">This call retrieves the specific items from the adapter cache.</td>
|
|
146
|
+
<td style="padding:15px">Yes</td>
|
|
110
147
|
</tr>
|
|
111
148
|
</table>
|
|
112
149
|
<br>
|
|
@@ -129,27 +166,27 @@ These are adapter methods that are used to integrate to IAP Brokers. This adapte
|
|
|
129
166
|
<tr>
|
|
130
167
|
<td style="padding:15px">getDevice(deviceName, callback)</td>
|
|
131
168
|
<td style="padding:15px">This call returns the details of the requested device.</td>
|
|
132
|
-
<td style="padding:15px">
|
|
169
|
+
<td style="padding:15px">No</td>
|
|
133
170
|
</tr>
|
|
134
171
|
<tr>
|
|
135
172
|
<td style="padding:15px">getDevicesFiltered(options, callback)</td>
|
|
136
173
|
<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">
|
|
174
|
+
<td style="padding:15px">No</td>
|
|
138
175
|
</tr>
|
|
139
176
|
<tr>
|
|
140
177
|
<td style="padding:15px">isAlive(deviceName, callback)</td>
|
|
141
178
|
<td style="padding:15px">This call returns whether the device status is active</td>
|
|
142
|
-
<td style="padding:15px">
|
|
179
|
+
<td style="padding:15px">No</td>
|
|
143
180
|
</tr>
|
|
144
181
|
<tr>
|
|
145
182
|
<td style="padding:15px">getConfig(deviceName, format, callback)</td>
|
|
146
183
|
<td style="padding:15px">This call returns the configuration for the selected device.</td>
|
|
147
|
-
<td style="padding:15px">
|
|
184
|
+
<td style="padding:15px">No</td>
|
|
148
185
|
</tr>
|
|
149
186
|
<tr>
|
|
150
187
|
<td style="padding:15px">iapGetDeviceCount(callback)</td>
|
|
151
188
|
<td style="padding:15px">This call returns the count of devices.</td>
|
|
152
|
-
<td style="padding:15px">
|
|
189
|
+
<td style="padding:15px">No</td>
|
|
153
190
|
</tr>
|
|
154
191
|
</table>
|
|
155
192
|
<br>
|
|
@@ -165,5 +202,839 @@ Specific adapter calls are built based on the API of the Adapter for ServiceNow.
|
|
|
165
202
|
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Path</span></th>
|
|
166
203
|
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Workflow?</span></th>
|
|
167
204
|
</tr>
|
|
205
|
+
<tr>
|
|
206
|
+
<td style="padding:15px">queryTableByNameAndId(tableName, recordId, callback)</td>
|
|
207
|
+
<td style="padding:15px">Retrieves the record identified by the specified sys_id from the specified table.</td>
|
|
208
|
+
<td style="padding:15px">{base_path}/{version}/now/table/{pathv1}/{pathv2}?{query}</td>
|
|
209
|
+
<td style="padding:15px">Yes</td>
|
|
210
|
+
</tr>
|
|
211
|
+
<tr>
|
|
212
|
+
<td style="padding:15px">queryTableByNameWithLimit(tableName, sysparmQueryKeyValuePairs, sysparmQueryString, sysparmLimit, sysparmFields, callback)</td>
|
|
213
|
+
<td style="padding:15px">Retrieves a limited number of records in the table</td>
|
|
214
|
+
<td style="padding:15px">{base_path}/{version}/now/table/{pathv1}?{query}</td>
|
|
215
|
+
<td style="padding:15px">Yes</td>
|
|
216
|
+
</tr>
|
|
217
|
+
<tr>
|
|
218
|
+
<td style="padding:15px">createRecordInTable(tableName, body, callback)</td>
|
|
219
|
+
<td style="padding:15px">Inserts one record in the specified table. Multiple record insertion is not supported by this method.</td>
|
|
220
|
+
<td style="padding:15px">{base_path}/{version}/now/table/{pathv1}?{query}</td>
|
|
221
|
+
<td style="padding:15px">Yes</td>
|
|
222
|
+
</tr>
|
|
223
|
+
<tr>
|
|
224
|
+
<td style="padding:15px">updateTableRecord(tableName, recordId, body, callback)</td>
|
|
225
|
+
<td style="padding:15px">Updates the specified record with the request body.</td>
|
|
226
|
+
<td style="padding:15px">{base_path}/{version}/now/table/{pathv1}/{pathv2}?{query}</td>
|
|
227
|
+
<td style="padding:15px">Yes</td>
|
|
228
|
+
</tr>
|
|
229
|
+
<tr>
|
|
230
|
+
<td style="padding:15px">deleteTableRecord(tableName, recordId, callback)</td>
|
|
231
|
+
<td style="padding:15px">Deletes the specified record from the specified table.</td>
|
|
232
|
+
<td style="padding:15px">{base_path}/{version}/now/table/{pathv1}/{pathv2}?{query}</td>
|
|
233
|
+
<td style="padding:15px">Yes</td>
|
|
234
|
+
</tr>
|
|
235
|
+
<tr>
|
|
236
|
+
<td style="padding:15px">getAgentPresence(agentId, callback)</td>
|
|
237
|
+
<td style="padding:15px">Sets the state of a provided agent’s presence and sets the agent’s channel availability for that state (if provided).</td>
|
|
238
|
+
<td style="padding:15px">{base_path}/{version}/now/awa/agents/{pathv1}?{query}</td>
|
|
239
|
+
<td style="padding:15px">Yes</td>
|
|
240
|
+
</tr>
|
|
241
|
+
<tr>
|
|
242
|
+
<td style="padding:15px">setAgentPresence(agentId, body, callback)</td>
|
|
243
|
+
<td style="padding:15px">Sets the state of a provided agent’s presence and sets the agent’s channel availability for that state (if provided).</td>
|
|
244
|
+
<td style="padding:15px">{base_path}/{version}/now/awa/agents/{pathv1}?{query}</td>
|
|
245
|
+
<td style="padding:15px">Yes</td>
|
|
246
|
+
</tr>
|
|
247
|
+
<tr>
|
|
248
|
+
<td style="padding:15px">getStandardChangeRequest(sysparmQuery, callback)</td>
|
|
249
|
+
<td style="padding:15px">Retrieves one or more standard change requests based on the specified criteria.</td>
|
|
250
|
+
<td style="padding:15px">{base_path}/{version}/sn_chg_rest/change/standard?{query}</td>
|
|
251
|
+
<td style="padding:15px">Yes</td>
|
|
252
|
+
</tr>
|
|
253
|
+
<tr>
|
|
254
|
+
<td style="padding:15px">getStandardChangeRequestById(sysparmQuery, changeId, callback)</td>
|
|
255
|
+
<td style="padding:15px">Retrieves the standard change request identified by the specified sys_id.</td>
|
|
256
|
+
<td style="padding:15px">{base_path}/{version}/sn_chg_rest/change/standard/{pathv1}?{query}</td>
|
|
257
|
+
<td style="padding:15px">Yes</td>
|
|
258
|
+
</tr>
|
|
259
|
+
<tr>
|
|
260
|
+
<td style="padding:15px">deleteStandardChangeRequestById(sysparmQuery, changeId, callback)</td>
|
|
261
|
+
<td style="padding:15px">Deletes the standard change request identified by the specified sys_id.</td>
|
|
262
|
+
<td style="padding:15px">{base_path}/{version}/sn_chg_rest/change/standard/{pathv1}?{query}</td>
|
|
263
|
+
<td style="padding:15px">Yes</td>
|
|
264
|
+
</tr>
|
|
265
|
+
<tr>
|
|
266
|
+
<td style="padding:15px">getStandardChangeTemplate(sysparmQuery, callback)</td>
|
|
267
|
+
<td style="padding:15px">Retrieves one or more standard change templates based on the specified criteria.</td>
|
|
268
|
+
<td style="padding:15px">{base_path}/{version}/sn_chg_rest/change/standard/template?{query}</td>
|
|
269
|
+
<td style="padding:15px">Yes</td>
|
|
270
|
+
</tr>
|
|
271
|
+
<tr>
|
|
272
|
+
<td style="padding:15px">getStandardChangeTemplateById(sysparmQuery, changeId, callback)</td>
|
|
273
|
+
<td style="padding:15px">Retrieves the standard change template identified by the specified sys_id.</td>
|
|
274
|
+
<td style="padding:15px">{base_path}/{version}/sn_chg_rest/change/standard/template/{pathv1}?{query}</td>
|
|
275
|
+
<td style="padding:15px">Yes</td>
|
|
276
|
+
</tr>
|
|
277
|
+
<tr>
|
|
278
|
+
<td style="padding:15px">changeStandardTemplateById(standardChangeTemplateId, callback)</td>
|
|
279
|
+
<td style="padding:15px">Creates one standard change request based on an existing standard change template.</td>
|
|
280
|
+
<td style="padding:15px">{base_path}/{version}/sn_chg_rest/change/standard/{pathv1}?{query}</td>
|
|
281
|
+
<td style="padding:15px">Yes</td>
|
|
282
|
+
</tr>
|
|
283
|
+
<tr>
|
|
284
|
+
<td style="padding:15px">getNormalChangeRequest(sysparmQuery, callback)</td>
|
|
285
|
+
<td style="padding:15px">Retrieves one or more normal change requests based on the specified criteria</td>
|
|
286
|
+
<td style="padding:15px">{base_path}/{version}/sn_chg_rest/change/normal?{query}</td>
|
|
287
|
+
<td style="padding:15px">Yes</td>
|
|
288
|
+
</tr>
|
|
289
|
+
<tr>
|
|
290
|
+
<td style="padding:15px">getNormalChangeRequestById(sysparmQuery, changeId, callback)</td>
|
|
291
|
+
<td style="padding:15px">Retrieves the normal change request identified by the specified sys_id.</td>
|
|
292
|
+
<td style="padding:15px">{base_path}/{version}/sn_chg_rest/change/normal/{pathv1}?{query}</td>
|
|
293
|
+
<td style="padding:15px">Yes</td>
|
|
294
|
+
</tr>
|
|
295
|
+
<tr>
|
|
296
|
+
<td style="padding:15px">createNormalChangeRequest(change, callback)</td>
|
|
297
|
+
<td style="padding:15px">Creates one normal change request based on the default normal change request record.</td>
|
|
298
|
+
<td style="padding:15px">{base_path}/{version}/sn_chg_rest/change/normal?{query}</td>
|
|
299
|
+
<td style="padding:15px">Yes</td>
|
|
300
|
+
</tr>
|
|
301
|
+
<tr>
|
|
302
|
+
<td style="padding:15px">updateNormalChangeRequestById(changeId, change, callback)</td>
|
|
303
|
+
<td style="padding:15px">Updates one normal change request based on the default normal change request record.</td>
|
|
304
|
+
<td style="padding:15px">{base_path}/{version}/sn_chg_rest/change/normal/{pathv1}?{query}</td>
|
|
305
|
+
<td style="padding:15px">Yes</td>
|
|
306
|
+
</tr>
|
|
307
|
+
<tr>
|
|
308
|
+
<td style="padding:15px">deleteNormalChangeRequestById(sysparmQuery, changeId, callback)</td>
|
|
309
|
+
<td style="padding:15px">Deletes the normal change request identified by the specified sys_id.</td>
|
|
310
|
+
<td style="padding:15px">{base_path}/{version}/sn_chg_rest/change/normal/{pathv1}?{query}</td>
|
|
311
|
+
<td style="padding:15px">Yes</td>
|
|
312
|
+
</tr>
|
|
313
|
+
<tr>
|
|
314
|
+
<td style="padding:15px">getEmergencyChangeRequest(sysparmQuery, callback)</td>
|
|
315
|
+
<td style="padding:15px">Retrieves one or more emergency change requests based on the specified criteria.</td>
|
|
316
|
+
<td style="padding:15px">{base_path}/{version}/sn_chg_rest/change/emergency?{query}</td>
|
|
317
|
+
<td style="padding:15px">Yes</td>
|
|
318
|
+
</tr>
|
|
319
|
+
<tr>
|
|
320
|
+
<td style="padding:15px">getEmergencyChangeRequestById(sysparmQuery, changeId, callback)</td>
|
|
321
|
+
<td style="padding:15px">Retrieves the emergency change request identified by the specified sys_id.</td>
|
|
322
|
+
<td style="padding:15px">{base_path}/{version}/sn_chg_rest/change/emergency/{pathv1}?{query}</td>
|
|
323
|
+
<td style="padding:15px">Yes</td>
|
|
324
|
+
</tr>
|
|
325
|
+
<tr>
|
|
326
|
+
<td style="padding:15px">createEmergencyChangeRequest(sysparmQuery, callback)</td>
|
|
327
|
+
<td style="padding:15px">Creates one emergency change request based on the default emergency change request record.</td>
|
|
328
|
+
<td style="padding:15px">{base_path}/{version}/sn_chg_rest/change/emergency?{query}</td>
|
|
329
|
+
<td style="padding:15px">Yes</td>
|
|
330
|
+
</tr>
|
|
331
|
+
<tr>
|
|
332
|
+
<td style="padding:15px">deleteEmergencyChangeRequestById(sysparmQuery, changeId, callback)</td>
|
|
333
|
+
<td style="padding:15px">Deletes the emergency change request identified by the specified sys_id.</td>
|
|
334
|
+
<td style="padding:15px">{base_path}/{version}/sn_chg_rest/change/emergency/{pathv1}?{query}</td>
|
|
335
|
+
<td style="padding:15px">Yes</td>
|
|
336
|
+
</tr>
|
|
337
|
+
<tr>
|
|
338
|
+
<td style="padding:15px">getChangeRequestTask(sysparmQuery, changeId, callback)</td>
|
|
339
|
+
<td style="padding:15px">Retrieves one or more tasks associated with a specified change request based on the specified criteria.</td>
|
|
340
|
+
<td style="padding:15px">{base_path}/{version}/sn_chg_rest/change/{pathv1}/task?{query}</td>
|
|
341
|
+
<td style="padding:15px">Yes</td>
|
|
342
|
+
</tr>
|
|
343
|
+
<tr>
|
|
344
|
+
<td style="padding:15px">getChangeTaskByTaskId(sysparmQuery, changeId, taskId, callback)</td>
|
|
345
|
+
<td style="padding:15px">Retrieves the task for the change request identified by the specified sys_ids.</td>
|
|
346
|
+
<td style="padding:15px">{base_path}/{version}/sn_chg_rest/change/{pathv1}/task/{pathv2}?{query}</td>
|
|
347
|
+
<td style="padding:15px">Yes</td>
|
|
348
|
+
</tr>
|
|
349
|
+
<tr>
|
|
350
|
+
<td style="padding:15px">createChangeRequestTask(sysparmQuery, changeId, callback)</td>
|
|
351
|
+
<td style="padding:15px">Creates one change request task based on the default change request task record.</td>
|
|
352
|
+
<td style="padding:15px">{base_path}/{version}/sn_chg_rest/change/{pathv1}/task?{query}</td>
|
|
353
|
+
<td style="padding:15px">Yes</td>
|
|
354
|
+
</tr>
|
|
355
|
+
<tr>
|
|
356
|
+
<td style="padding:15px">deleteChangeTaskByTaskId(sysparmQuery, changeId, taskId, callback)</td>
|
|
357
|
+
<td style="padding:15px">Deletes the change request task identified by the specified sys_ids.</td>
|
|
358
|
+
<td style="padding:15px">{base_path}/{version}/sn_chg_rest/change/{pathv1}/task/{pathv2}?{query}</td>
|
|
359
|
+
<td style="padding:15px">Yes</td>
|
|
360
|
+
</tr>
|
|
361
|
+
<tr>
|
|
362
|
+
<td style="padding:15px">getChangeRequestConflict(sysparmQuery, changeId, callback)</td>
|
|
363
|
+
<td style="padding:15px">Retrieves the status of the currently running change request conflict checking process</td>
|
|
364
|
+
<td style="padding:15px">{base_path}/{version}/sn_chg_rest/change/{pathv1}/conflict?{query}</td>
|
|
365
|
+
<td style="padding:15px">Yes</td>
|
|
366
|
+
</tr>
|
|
367
|
+
<tr>
|
|
368
|
+
<td style="padding:15px">createChangeRequestConflict(sysparmQuery, changeId, callback)</td>
|
|
369
|
+
<td style="padding:15px">Starts a change request conflict checking process for the specified change request (sys_id).</td>
|
|
370
|
+
<td style="padding:15px">{base_path}/{version}/sn_chg_rest/change/{pathv1}/conflict?{query}</td>
|
|
371
|
+
<td style="padding:15px">Yes</td>
|
|
372
|
+
</tr>
|
|
373
|
+
<tr>
|
|
374
|
+
<td style="padding:15px">cancelChangeRequestConflict(sysparmQuery, changeId, callback)</td>
|
|
375
|
+
<td style="padding:15px">Cancels the running conflict checking process for the specified change request (sys_id).</td>
|
|
376
|
+
<td style="padding:15px">{base_path}/{version}/sn_chg_rest/change/{pathv1}/conflict?{query}</td>
|
|
377
|
+
<td style="padding:15px">Yes</td>
|
|
378
|
+
</tr>
|
|
379
|
+
<tr>
|
|
380
|
+
<td style="padding:15px">getImportById(tableName, importId, callback)</td>
|
|
381
|
+
<td style="padding:15px">This method retrieves the specified import staging record and resulting transformation result.</td>
|
|
382
|
+
<td style="padding:15px">{base_path}/{version}/now/import/{pathv1}/{pathv2}?{query}</td>
|
|
383
|
+
<td style="padding:15px">Yes</td>
|
|
384
|
+
</tr>
|
|
385
|
+
<tr>
|
|
386
|
+
<td style="padding:15px">importIntoTable(tableName, body, callback)</td>
|
|
387
|
+
<td style="padding:15px">Inserts incoming data into a specified staging table.</td>
|
|
388
|
+
<td style="padding:15px">{base_path}/{version}/now/import/{pathv1}?{query}</td>
|
|
389
|
+
<td style="padding:15px">Yes</td>
|
|
390
|
+
</tr>
|
|
391
|
+
<tr>
|
|
392
|
+
<td style="padding:15px">getApplicationById(appId, callback)</td>
|
|
393
|
+
<td style="padding:15px">Retrieve a list of CIs in an application service and the relationships between them.</td>
|
|
394
|
+
<td style="padding:15px">{base_path}/{version}/now/cmdb/app_service/{pathv1}/getContent?{query}</td>
|
|
395
|
+
<td style="padding:15px">Yes</td>
|
|
396
|
+
</tr>
|
|
397
|
+
<tr>
|
|
398
|
+
<td style="padding:15px">createApplication(body, callback)</td>
|
|
399
|
+
<td style="padding:15px">Create an application service or update an existing application service.</td>
|
|
400
|
+
<td style="padding:15px">{base_path}/{version}/now/cmdb/app_service/create?{query}</td>
|
|
401
|
+
<td style="padding:15px">Yes</td>
|
|
402
|
+
</tr>
|
|
403
|
+
<tr>
|
|
404
|
+
<td style="padding:15px">getEmail(emailId, callback)</td>
|
|
405
|
+
<td style="padding:15px">This method returns the record details of the specified email record.</td>
|
|
406
|
+
<td style="padding:15px">{base_path}/{version}/now/email/{pathv1}?{query}</td>
|
|
407
|
+
<td style="padding:15px">Yes</td>
|
|
408
|
+
</tr>
|
|
409
|
+
<tr>
|
|
410
|
+
<td style="padding:15px">createEmail(body, callback)</td>
|
|
411
|
+
<td style="padding:15px">This method creates the email record specified in the request body.</td>
|
|
412
|
+
<td style="padding:15px">{base_path}/{version}/now/email?{query}</td>
|
|
413
|
+
<td style="padding:15px">Yes</td>
|
|
414
|
+
</tr>
|
|
415
|
+
<tr>
|
|
416
|
+
<td style="padding:15px">pushInstallation(pushApplicationName, body, callback)</td>
|
|
417
|
+
<td style="padding:15px">Adds or updates tokens that enable devices to receive push notifications from the specified application.</td>
|
|
418
|
+
<td style="padding:15px">{base_path}/{version}/now/push/{pathv1}/removeInstallation?{query}</td>
|
|
419
|
+
<td style="padding:15px">Yes</td>
|
|
420
|
+
</tr>
|
|
421
|
+
<tr>
|
|
422
|
+
<td style="padding:15px">removeInstallation(pushApplicationName, body, callback)</td>
|
|
423
|
+
<td style="padding:15px">Adds or updates tokens that enable devices to receive push notifications from the specified application.</td>
|
|
424
|
+
<td style="padding:15px">{base_path}/{version}/now/push/{pathv1}/installation?{query}</td>
|
|
425
|
+
<td style="padding:15px">Yes</td>
|
|
426
|
+
</tr>
|
|
427
|
+
<tr>
|
|
428
|
+
<td style="padding:15px">getMetricBase(table, subject, metric, sysparmEnd, sysparmStart, callback)</td>
|
|
429
|
+
<td style="padding:15px">Retrieve time series data from the MetricBase database.</td>
|
|
430
|
+
<td style="padding:15px">{base_path}/{version}/now/v1/clotho/table/{pathv1}/{pathv2}/{pathv3}?{query}</td>
|
|
431
|
+
<td style="padding:15px">Yes</td>
|
|
432
|
+
</tr>
|
|
433
|
+
<tr>
|
|
434
|
+
<td style="padding:15px">createMetricBase(body, callback)</td>
|
|
435
|
+
<td style="padding:15px">Adds time-series data to the MetricBase database.</td>
|
|
436
|
+
<td style="padding:15px">{base_path}/{version}/now/v1/clotho/put?{query}</td>
|
|
437
|
+
<td style="padding:15px">Yes</td>
|
|
438
|
+
</tr>
|
|
439
|
+
<tr>
|
|
440
|
+
<td style="padding:15px">transformMetricBase(table, metric, sysparmEnd, sysparmStart, callback)</td>
|
|
441
|
+
<td style="padding:15px">Transforms selected data.</td>
|
|
442
|
+
<td style="padding:15px">{base_path}/{version}/now/v1/clotho/transform/{pathv1}/{pathv2}?{query}</td>
|
|
443
|
+
<td style="padding:15px">Yes</td>
|
|
444
|
+
</tr>
|
|
445
|
+
<tr>
|
|
446
|
+
<td style="padding:15px">getAggregate(sysparmQuery, tableName, aggregate, callback)</td>
|
|
447
|
+
<td style="padding:15px">This method retrieves records for the specified table and performs aggregate functions on the returned values.</td>
|
|
448
|
+
<td style="padding:15px">{base_path}/{version}/now/stats/{pathv1}?{query}</td>
|
|
449
|
+
<td style="padding:15px">Yes</td>
|
|
450
|
+
</tr>
|
|
451
|
+
<tr>
|
|
452
|
+
<td style="padding:15px">createQueue(queueId, body, callback)</td>
|
|
453
|
+
<td style="padding:15px">If an active work item exists, routes a document to a queue.</td>
|
|
454
|
+
<td style="padding:15px">{base_path}/{version}/now/awa/queues/{pathv1}/work_item?{query}</td>
|
|
455
|
+
<td style="padding:15px">Yes</td>
|
|
456
|
+
</tr>
|
|
457
|
+
<tr>
|
|
458
|
+
<td style="padding:15px">getUserRoles(userId, callback)</td>
|
|
459
|
+
<td style="padding:15px">Returns a specified user's granted and inherited roles.</td>
|
|
460
|
+
<td style="padding:15px">{base_path}/{version}/global/user_role_inheritance?{query}</td>
|
|
461
|
+
<td style="padding:15px">Yes</td>
|
|
462
|
+
</tr>
|
|
463
|
+
<tr>
|
|
464
|
+
<td style="padding:15px">getPerformanceAnalytics(sysparmUuid, callback)</td>
|
|
465
|
+
<td style="padding:15px">This method retrieves details about indicators from the Analytics Hub.</td>
|
|
466
|
+
<td style="padding:15px">{base_path}/{version}/now/pa/scorecards?{query}</td>
|
|
467
|
+
<td style="padding:15px">Yes</td>
|
|
468
|
+
</tr>
|
|
469
|
+
<tr>
|
|
470
|
+
<td style="padding:15px">getChannelsForTable(sysparmTable, callback)</td>
|
|
471
|
+
<td style="padding:15px">This method returns the list of channels for a given task record.</td>
|
|
472
|
+
<td style="padding:15px">{base_path}/{version}/sn_comm_management/task_communication_management/channels?{query}</td>
|
|
473
|
+
<td style="padding:15px">Yes</td>
|
|
474
|
+
</tr>
|
|
475
|
+
<tr>
|
|
476
|
+
<td style="padding:15px">getChannelsForTableByTaskId(commTaskId, table, callback)</td>
|
|
477
|
+
<td style="padding:15px">This method returns meta data of all channels associated with a given communication task id and table.</td>
|
|
478
|
+
<td style="padding:15px">{base_path}/{version}/sn_comm_management/task_communication_management/channels_per_task/{pathv1}/{pathv2}?{query}</td>
|
|
479
|
+
<td style="padding:15px">Yes</td>
|
|
480
|
+
</tr>
|
|
481
|
+
<tr>
|
|
482
|
+
<td style="padding:15px">getCommunicationGroupPlans(taskId, callback)</td>
|
|
483
|
+
<td style="padding:15px">This method returns list of communication plans that includes communication tasks and channels.</td>
|
|
484
|
+
<td style="padding:15px">{base_path}/{version}/sn_comm_management/task_communication_management/communication_detail/{pathv1}?{query}</td>
|
|
485
|
+
<td style="padding:15px">Yes</td>
|
|
486
|
+
</tr>
|
|
487
|
+
<tr>
|
|
488
|
+
<td style="padding:15px">getCommunicationPlans(taskId, callback)</td>
|
|
489
|
+
<td style="padding:15px">This method returns list of communication plans that includes communication tasks and channels.</td>
|
|
490
|
+
<td style="padding:15px">{base_path}/{version}/sn_comm_management/task_communication_management/groups/{pathv1}?{query}</td>
|
|
491
|
+
<td style="padding:15px">Yes</td>
|
|
492
|
+
</tr>
|
|
493
|
+
<tr>
|
|
494
|
+
<td style="padding:15px">manageCommunicationRecipients(sysparmTable, commPlanId, body, callback)</td>
|
|
495
|
+
<td style="padding:15px">This method manages the recipients of a communication plan.</td>
|
|
496
|
+
<td style="padding:15px">{base_path}/{version}/sn_comm_management/task_communication_management/comm_plan/{pathv1}/recipients?{query}</td>
|
|
497
|
+
<td style="padding:15px">Yes</td>
|
|
498
|
+
</tr>
|
|
499
|
+
<tr>
|
|
500
|
+
<td style="padding:15px">createCommunicationPlan(sysparmTable, body, callback)</td>
|
|
501
|
+
<td style="padding:15px">Create a communication plan and communication task instance</td>
|
|
502
|
+
<td style="padding:15px">{base_path}/{version}/sn_comm_management/task_communication_management/adhoc/comm_plan?{query}</td>
|
|
503
|
+
<td style="padding:15px">Yes</td>
|
|
504
|
+
</tr>
|
|
505
|
+
<tr>
|
|
506
|
+
<td style="padding:15px">getCommunicationTaskState(commTaskId, table, body, callback)</td>
|
|
507
|
+
<td style="padding:15px">This method returns success status if the channel task is successfully completed.</td>
|
|
508
|
+
<td style="padding:15px">{base_path}/{version}/sn_comm_management/task_communication_management/send_updates/{pathv1}/{pathv2}?{query}</td>
|
|
509
|
+
<td style="padding:15px">Yes</td>
|
|
510
|
+
</tr>
|
|
511
|
+
<tr>
|
|
512
|
+
<td style="padding:15px">createCommunicationTask(sysparmTable, body, callback)</td>
|
|
513
|
+
<td style="padding:15px">This method is used to create a communication task instance.</td>
|
|
514
|
+
<td style="padding:15px">{base_path}/{version}/sn_comm_management/task_communication_management/adhoc/comm_task?{query}</td>
|
|
515
|
+
<td style="padding:15px">Yes</td>
|
|
516
|
+
</tr>
|
|
517
|
+
<tr>
|
|
518
|
+
<td style="padding:15px">updateCommunicationTask(commTaskId, table, body, callback)</td>
|
|
519
|
+
<td style="padding:15px">This method performs specified action on communication tasks.</td>
|
|
520
|
+
<td style="padding:15px">{base_path}/{version}/sn_comm_management/task_communication_management/update_state_wb_actions/{pathv1}/{pathv2}?{query}</td>
|
|
521
|
+
<td style="padding:15px">Yes</td>
|
|
522
|
+
</tr>
|
|
523
|
+
<tr>
|
|
524
|
+
<td style="padding:15px">getAttachmentMetadataById(attachId, callback)</td>
|
|
525
|
+
<td style="padding:15px">This method gets the metadata for the attachment file with a specific sys_id value.</td>
|
|
526
|
+
<td style="padding:15px">{base_path}/{version}/now/attachment/{pathv1}?{query}</td>
|
|
527
|
+
<td style="padding:15px">Yes</td>
|
|
528
|
+
</tr>
|
|
529
|
+
<tr>
|
|
530
|
+
<td style="padding:15px">getAttachmentBinaryById(attachId, callback)</td>
|
|
531
|
+
<td style="padding:15px">This method gets the binary file attachment with a specific sys_id value.</td>
|
|
532
|
+
<td style="padding:15px">{base_path}/{version}/now/attachment/{pathv1}/file?{query}</td>
|
|
533
|
+
<td style="padding:15px">Yes</td>
|
|
534
|
+
</tr>
|
|
535
|
+
<tr>
|
|
536
|
+
<td style="padding:15px">getAttachmentsMetadata(sysparmQuery, callback)</td>
|
|
537
|
+
<td style="padding:15px">This method gets the metadata for multiple attachments.</td>
|
|
538
|
+
<td style="padding:15px">{base_path}/{version}/now/attachment?{query}</td>
|
|
539
|
+
<td style="padding:15px">Yes</td>
|
|
540
|
+
</tr>
|
|
541
|
+
<tr>
|
|
542
|
+
<td style="padding:15px">uploadAttachment(encryptionContext, fileName, tableName, tableId, bodyFormData, callback)</td>
|
|
543
|
+
<td style="padding:15px">This method uploads a binary file specified in the request body as an attachment.</td>
|
|
544
|
+
<td style="padding:15px">{base_path}/{version}/now/attachment/file?{query}</td>
|
|
545
|
+
<td style="padding:15px">Yes</td>
|
|
546
|
+
</tr>
|
|
547
|
+
<tr>
|
|
548
|
+
<td style="padding:15px">uploadMultipartAttachment(bodyFormData, callback)</td>
|
|
549
|
+
<td style="padding:15px">This method uploads a multipart file attachment.</td>
|
|
550
|
+
<td style="padding:15px">{base_path}/{version}/now/attachment/upload?{query}</td>
|
|
551
|
+
<td style="padding:15px">Yes</td>
|
|
552
|
+
</tr>
|
|
553
|
+
<tr>
|
|
554
|
+
<td style="padding:15px">deleteAttachmentById(attachId, callback)</td>
|
|
555
|
+
<td style="padding:15px">This method deletes the attachment with a specific sys_id value.</td>
|
|
556
|
+
<td style="padding:15px">{base_path}/{version}/now/attachment/{pathv1}?{query}</td>
|
|
557
|
+
<td style="padding:15px">Yes</td>
|
|
558
|
+
</tr>
|
|
559
|
+
<tr>
|
|
560
|
+
<td style="padding:15px">getCSMAccount(id, callback)</td>
|
|
561
|
+
<td style="padding:15px">Retrieves the specified CSM account.</td>
|
|
562
|
+
<td style="padding:15px">{base_path}/{version}/now/account/{pathv1}?{query}</td>
|
|
563
|
+
<td style="padding:15px">Yes</td>
|
|
564
|
+
</tr>
|
|
565
|
+
<tr>
|
|
566
|
+
<td style="padding:15px">queryCSMAccounts(sysparmQuery, callback)</td>
|
|
567
|
+
<td style="padding:15px">Retrieves a specified set of CSM accounts.</td>
|
|
568
|
+
<td style="padding:15px">{base_path}/{version}/now/account?{query}</td>
|
|
569
|
+
<td style="padding:15px">Yes</td>
|
|
570
|
+
</tr>
|
|
571
|
+
<tr>
|
|
572
|
+
<td style="padding:15px">getCSMCase(id, callback)</td>
|
|
573
|
+
<td style="padding:15px">Retrieves the specified CSM case.</td>
|
|
574
|
+
<td style="padding:15px">{base_path}/{version}/sn_customerservice/case/{pathv1}?{query}</td>
|
|
575
|
+
<td style="padding:15px">Yes</td>
|
|
576
|
+
</tr>
|
|
577
|
+
<tr>
|
|
578
|
+
<td style="padding:15px">queryCSMCases(sysparmQuery, callback)</td>
|
|
579
|
+
<td style="padding:15px">Retrieves a specified set of CSM cases.</td>
|
|
580
|
+
<td style="padding:15px">{base_path}/{version}/sn_customerservice/case?{query}</td>
|
|
581
|
+
<td style="padding:15px">Yes</td>
|
|
582
|
+
</tr>
|
|
583
|
+
<tr>
|
|
584
|
+
<td style="padding:15px">createCSMCase(sysparmQuery, body, callback)</td>
|
|
585
|
+
<td style="padding:15px">Creates a new CSM case.</td>
|
|
586
|
+
<td style="padding:15px">{base_path}/{version}/sn_customerservice/case?{query}</td>
|
|
587
|
+
<td style="padding:15px">Yes</td>
|
|
588
|
+
</tr>
|
|
589
|
+
<tr>
|
|
590
|
+
<td style="padding:15px">updateCSMCase(id, body, callback)</td>
|
|
591
|
+
<td style="padding:15px">Updates the specified existing CSM case with the passed-in parameters.</td>
|
|
592
|
+
<td style="padding:15px">{base_path}/{version}/sn_customerservice/case/{pathv1}?{query}</td>
|
|
593
|
+
<td style="padding:15px">Yes</td>
|
|
594
|
+
</tr>
|
|
595
|
+
<tr>
|
|
596
|
+
<td style="padding:15px">getCSMConsumer(id, callback)</td>
|
|
597
|
+
<td style="padding:15px">Retrieves the specified CSM consumer record.</td>
|
|
598
|
+
<td style="padding:15px">{base_path}/{version}/now/consumer/{pathv1}?{query}</td>
|
|
599
|
+
<td style="padding:15px">Yes</td>
|
|
600
|
+
</tr>
|
|
601
|
+
<tr>
|
|
602
|
+
<td style="padding:15px">queryCSMConsumers(sysparmQuery, callback)</td>
|
|
603
|
+
<td style="padding:15px">Retrieves a specified set of CSM consumer records.</td>
|
|
604
|
+
<td style="padding:15px">{base_path}/{version}/now/consumer?{query}</td>
|
|
605
|
+
<td style="padding:15px">Yes</td>
|
|
606
|
+
</tr>
|
|
607
|
+
<tr>
|
|
608
|
+
<td style="padding:15px">createCSMConsumer(sysparmQuery, body, callback)</td>
|
|
609
|
+
<td style="padding:15px">Creates a new CSM consumer.</td>
|
|
610
|
+
<td style="padding:15px">{base_path}/{version}/now/consumer?{query}</td>
|
|
611
|
+
<td style="padding:15px">Yes</td>
|
|
612
|
+
</tr>
|
|
613
|
+
<tr>
|
|
614
|
+
<td style="padding:15px">getCSMContact(id, callback)</td>
|
|
615
|
+
<td style="padding:15px">Retrieves the specified CSM contact.</td>
|
|
616
|
+
<td style="padding:15px">{base_path}/{version}/now/contact/{pathv1}?{query}</td>
|
|
617
|
+
<td style="padding:15px">Yes</td>
|
|
618
|
+
</tr>
|
|
619
|
+
<tr>
|
|
620
|
+
<td style="padding:15px">queryCSMContacts(sysparmQuery, callback)</td>
|
|
621
|
+
<td style="padding:15px">Retrieves a specified set of CSM contacts.</td>
|
|
622
|
+
<td style="padding:15px">{base_path}/{version}/now/contact?{query}</td>
|
|
623
|
+
<td style="padding:15px">Yes</td>
|
|
624
|
+
</tr>
|
|
625
|
+
<tr>
|
|
626
|
+
<td style="padding:15px">createCSMContact(sysparmQuery, body, callback)</td>
|
|
627
|
+
<td style="padding:15px">Creates a new CSM contact.</td>
|
|
628
|
+
<td style="padding:15px">{base_path}/{version}/now/contact?{query}</td>
|
|
629
|
+
<td style="padding:15px">Yes</td>
|
|
630
|
+
</tr>
|
|
631
|
+
<tr>
|
|
632
|
+
<td style="padding:15px">getServiceCatalogs(sysparmLimit, callback)</td>
|
|
633
|
+
<td style="padding:15px">Retrieves a list of catalogs to which the user has access based on the passed in parameters.</td>
|
|
634
|
+
<td style="padding:15px">{base_path}/{version}/sn_sc/servicecatalog/catalogs?{query}</td>
|
|
635
|
+
<td style="padding:15px">Yes</td>
|
|
636
|
+
</tr>
|
|
637
|
+
<tr>
|
|
638
|
+
<td style="padding:15px">getServiceCatalogById(sysparmLimit, catalogId, callback)</td>
|
|
639
|
+
<td style="padding:15px">Retrieves the available information for a specified catalog.</td>
|
|
640
|
+
<td style="padding:15px">{base_path}/{version}/sn_sc/servicecatalog/catalogs/{pathv1}?{query}</td>
|
|
641
|
+
<td style="padding:15px">Yes</td>
|
|
642
|
+
</tr>
|
|
643
|
+
<tr>
|
|
644
|
+
<td style="padding:15px">getServiceCatalogCategoryInformation(sysparmLimit, catalogId, callback)</td>
|
|
645
|
+
<td style="padding:15px">Retrieves the available information for a specified category.</td>
|
|
646
|
+
<td style="padding:15px">{base_path}/{version}/sn_sc/servicecatalog/catalogs/{pathv1}/categories?{query}</td>
|
|
647
|
+
<td style="padding:15px">Yes</td>
|
|
648
|
+
</tr>
|
|
649
|
+
<tr>
|
|
650
|
+
<td style="padding:15px">getServiceCatalogCategories(sysparmLimit, catalogId, callback)</td>
|
|
651
|
+
<td style="padding:15px">Retrieves the list of available categories for the specified catalog.</td>
|
|
652
|
+
<td style="padding:15px">{base_path}/{version}/sn_sc/servicecatalog/categories/{pathv1}?{query}</td>
|
|
653
|
+
<td style="padding:15px">Yes</td>
|
|
654
|
+
</tr>
|
|
655
|
+
<tr>
|
|
656
|
+
<td style="padding:15px">getServiceCatalogItems(sysparmLimit, sysparmCatalog, sysparmCategory, callback)</td>
|
|
657
|
+
<td style="padding:15px">Retrieves a list of catalog items based on the specified parameters.</td>
|
|
658
|
+
<td style="padding:15px">{base_path}/{version}/sn_sc/servicecatalog/items?{query}</td>
|
|
659
|
+
<td style="padding:15px">Yes</td>
|
|
660
|
+
</tr>
|
|
661
|
+
<tr>
|
|
662
|
+
<td style="padding:15px">getServiceCatalogItemById(sysparmLimit, catalogId, callback)</td>
|
|
663
|
+
<td style="padding:15px">Retrieves a specified catalog item.</td>
|
|
664
|
+
<td style="padding:15px">{base_path}/{version}/sn_sc/servicecatalog/items/{pathv1}?{query}</td>
|
|
665
|
+
<td style="padding:15px">Yes</td>
|
|
666
|
+
</tr>
|
|
667
|
+
<tr>
|
|
668
|
+
<td style="padding:15px">addItemToCart(itemId, body, callback)</td>
|
|
669
|
+
<td style="padding:15px">Adds the specified item to the cart of the current user.</td>
|
|
670
|
+
<td style="padding:15px">{base_path}/{version}/sn_sc/servicecatalog/items/{pathv1}/add_to_cart?{query}</td>
|
|
671
|
+
<td style="padding:15px">Yes</td>
|
|
672
|
+
</tr>
|
|
673
|
+
<tr>
|
|
674
|
+
<td style="padding:15px">getServiceCatalogOrderItems(itemId, body, callback)</td>
|
|
675
|
+
<td style="padding:15px">Retrieves a list of items based on the needs described for an order guide.</td>
|
|
676
|
+
<td style="padding:15px">{base_path}/{version}/sn_sc/servicecatalog/items/{pathv1}/submit_producer?{query}</td>
|
|
677
|
+
<td style="padding:15px">Yes</td>
|
|
678
|
+
</tr>
|
|
679
|
+
<tr>
|
|
680
|
+
<td style="padding:15px">createServiceCatalogRecordGuide(itemId, body, callback)</td>
|
|
681
|
+
<td style="padding:15px">Creates a record and returns the Table API relative path and redirect URL to access the created record.</td>
|
|
682
|
+
<td style="padding:15px">{base_path}/{version}/sn_sc/servicecatalog/items/{pathv1}/submit_guide?{query}</td>
|
|
683
|
+
<td style="padding:15px">Yes</td>
|
|
684
|
+
</tr>
|
|
685
|
+
<tr>
|
|
686
|
+
<td style="padding:15px">getServiceCatalogCheckoutInformation(itemId, body, callback)</td>
|
|
687
|
+
<td style="padding:15px">Retrieves an array of contents requested for checkout.</td>
|
|
688
|
+
<td style="padding:15px">{base_path}/{version}/sn_sc/servicecatalog/items/{pathv1}/checkout_guide?{query}</td>
|
|
689
|
+
<td style="padding:15px">Yes</td>
|
|
690
|
+
</tr>
|
|
691
|
+
<tr>
|
|
692
|
+
<td style="padding:15px">orderNowServiceCatalog(itemId, body, callback)</td>
|
|
693
|
+
<td style="padding:15px">Orders the specified catalog item.</td>
|
|
694
|
+
<td style="padding:15px">{base_path}/{version}/sn_sc/servicecatalog/items/{pathv1}/order_now?{query}</td>
|
|
695
|
+
<td style="padding:15px">Yes</td>
|
|
696
|
+
</tr>
|
|
697
|
+
<tr>
|
|
698
|
+
<td style="padding:15px">getServiceCatalogCart(callback)</td>
|
|
699
|
+
<td style="padding:15px">Retrieves the details of the items within the logged in user's cart.</td>
|
|
700
|
+
<td style="padding:15px">{base_path}/{version}/sn_sc/servicecatalog/cart?{query}</td>
|
|
701
|
+
<td style="padding:15px">Yes</td>
|
|
702
|
+
</tr>
|
|
703
|
+
<tr>
|
|
704
|
+
<td style="padding:15px">getServiceCatalogUserDeliveryAddress(userId, callback)</td>
|
|
705
|
+
<td style="padding:15px">Retrieves the shipping address of the specified user.</td>
|
|
706
|
+
<td style="padding:15px">{base_path}/{version}/sn_sc/servicecatalog/cart/delivery_address/{pathv1}?{query}</td>
|
|
707
|
+
<td style="padding:15px">Yes</td>
|
|
708
|
+
</tr>
|
|
709
|
+
<tr>
|
|
710
|
+
<td style="padding:15px">updateServiceCatalogCart(cartItemId, bodyFormData, callback)</td>
|
|
711
|
+
<td style="padding:15px">Updates the specified item in the logged in user's cart.</td>
|
|
712
|
+
<td style="padding:15px">{base_path}/{version}/sn_sc/servicecatalog/cart/{pathv1}?{query}</td>
|
|
713
|
+
<td style="padding:15px">Yes</td>
|
|
714
|
+
</tr>
|
|
715
|
+
<tr>
|
|
716
|
+
<td style="padding:15px">deleteServiceCatalogCartItems(cartItemId, callback)</td>
|
|
717
|
+
<td style="padding:15px">Deletes the specified item from the current cart.</td>
|
|
718
|
+
<td style="padding:15px">{base_path}/{version}/sn_sc/servicecatalog/cart/{pathv1}?{query}</td>
|
|
719
|
+
<td style="padding:15px">Yes</td>
|
|
720
|
+
</tr>
|
|
721
|
+
<tr>
|
|
722
|
+
<td style="padding:15px">getServiceCatalogDisplayVariable(itemId, body, callback)</td>
|
|
723
|
+
<td style="padding:15px">Returns the display value of the specified variable.</td>
|
|
724
|
+
<td style="padding:15px">{base_path}/{version}/sn_sc/servicecatalog/variables/{pathv1}/display_value?{query}</td>
|
|
725
|
+
<td style="padding:15px">Yes</td>
|
|
726
|
+
</tr>
|
|
727
|
+
<tr>
|
|
728
|
+
<td style="padding:15px">deleteServiceCatalogCart(cartId, callback)</td>
|
|
729
|
+
<td style="padding:15px">Deletes a specified cart, and the contents of the cart.</td>
|
|
730
|
+
<td style="padding:15px">{base_path}/{version}/sn_sc/servicecatalog/cart/{pathv1}/empty?{query}</td>
|
|
731
|
+
<td style="padding:15px">Yes</td>
|
|
732
|
+
</tr>
|
|
733
|
+
<tr>
|
|
734
|
+
<td style="padding:15px">checkoutCartServiceCatalog(callback)</td>
|
|
735
|
+
<td style="padding:15px">Retrieves and processes the checkout for the current cart based on whether the two-step checkout process is enabled.</td>
|
|
736
|
+
<td style="padding:15px">{base_path}/{version}/sn_sc/servicecatalog/cart/checkout?{query}</td>
|
|
737
|
+
<td style="padding:15px">Yes</td>
|
|
738
|
+
</tr>
|
|
739
|
+
<tr>
|
|
740
|
+
<td style="padding:15px">submitOrderServiceCatalog(callback)</td>
|
|
741
|
+
<td style="padding:15px">Checks out the user cart, based on the current check-out type (one-step or two-step ).</td>
|
|
742
|
+
<td style="padding:15px">{base_path}/{version}/sn_sc/servicecatalog/cart/submit_order?{query}</td>
|
|
743
|
+
<td style="padding:15px">Yes</td>
|
|
744
|
+
</tr>
|
|
745
|
+
<tr>
|
|
746
|
+
<td style="padding:15px">getChangeRequests(sysparmQuery, callback)</td>
|
|
747
|
+
<td style="padding:15px">Returns the changes from the provided ServiceNow instance.</td>
|
|
748
|
+
<td style="padding:15px">{base_path}/{version}/now/table/change_request?{query}</td>
|
|
749
|
+
<td style="padding:15px">Yes</td>
|
|
750
|
+
</tr>
|
|
751
|
+
<tr>
|
|
752
|
+
<td style="padding:15px">getChangeRequestById(changeId, callback)</td>
|
|
753
|
+
<td style="padding:15px">Returns the changes from the provided ServiceNow instance.</td>
|
|
754
|
+
<td style="padding:15px">{base_path}/{version}/now/table/change_request/{pathv1}?{query}</td>
|
|
755
|
+
<td style="padding:15px">Yes</td>
|
|
756
|
+
</tr>
|
|
757
|
+
<tr>
|
|
758
|
+
<td style="padding:15px">createChangeRequest(body, callback)</td>
|
|
759
|
+
<td style="padding:15px">Creates a change in the provided ServiceNow instance.</td>
|
|
760
|
+
<td style="padding:15px">{base_path}/{version}/now/table/change_request?{query}</td>
|
|
761
|
+
<td style="padding:15px">Yes</td>
|
|
762
|
+
</tr>
|
|
763
|
+
<tr>
|
|
764
|
+
<td style="padding:15px">updateChangeRequest(changeId, body, callback)</td>
|
|
765
|
+
<td style="padding:15px">Updates a change in the provided ServiceNow instance.</td>
|
|
766
|
+
<td style="padding:15px">{base_path}/{version}/now/table/change_request/{pathv1}?{query}</td>
|
|
767
|
+
<td style="padding:15px">Yes</td>
|
|
768
|
+
</tr>
|
|
769
|
+
<tr>
|
|
770
|
+
<td style="padding:15px">deleteChangeRequest(changeId, callback)</td>
|
|
771
|
+
<td style="padding:15px">Deletes the specified record from the specified table.</td>
|
|
772
|
+
<td style="padding:15px">{base_path}/{version}/now/table/change_request/{pathv1}?{query}</td>
|
|
773
|
+
<td style="padding:15px">Yes</td>
|
|
774
|
+
</tr>
|
|
775
|
+
<tr>
|
|
776
|
+
<td style="padding:15px">getIncidentById(incidentId, callback)</td>
|
|
777
|
+
<td style="padding:15px">Returns the changes from the provided ServiceNow instance.</td>
|
|
778
|
+
<td style="padding:15px">{base_path}/{version}/now/table/incident/{pathv1}?{query}</td>
|
|
779
|
+
<td style="padding:15px">Yes</td>
|
|
780
|
+
</tr>
|
|
781
|
+
<tr>
|
|
782
|
+
<td style="padding:15px">getIncidents(sysparmQuery, callback)</td>
|
|
783
|
+
<td style="padding:15px">Returns the Incident from the provided ServiceNow instance.</td>
|
|
784
|
+
<td style="padding:15px">{base_path}/{version}/now/table/incident?{query}</td>
|
|
785
|
+
<td style="padding:15px">Yes</td>
|
|
786
|
+
</tr>
|
|
787
|
+
<tr>
|
|
788
|
+
<td style="padding:15px">createIncident(body, callback)</td>
|
|
789
|
+
<td style="padding:15px">Creates a change in the provided ServiceNow instance.</td>
|
|
790
|
+
<td style="padding:15px">{base_path}/{version}/now/table/incident?{query}</td>
|
|
791
|
+
<td style="padding:15px">Yes</td>
|
|
792
|
+
</tr>
|
|
793
|
+
<tr>
|
|
794
|
+
<td style="padding:15px">updateIncident(incidentId, body, callback)</td>
|
|
795
|
+
<td style="padding:15px">Updates a change in the provided ServiceNow instance.</td>
|
|
796
|
+
<td style="padding:15px">{base_path}/{version}/now/table/incident/{pathv1}?{query}</td>
|
|
797
|
+
<td style="padding:15px">Yes</td>
|
|
798
|
+
</tr>
|
|
799
|
+
<tr>
|
|
800
|
+
<td style="padding:15px">deleteIncident(incidentId, callback)</td>
|
|
801
|
+
<td style="padding:15px">Deletes the specified record from the specified table.</td>
|
|
802
|
+
<td style="padding:15px">{base_path}/{version}/now/table/incident/{pathv1}?{query}</td>
|
|
803
|
+
<td style="padding:15px">Yes</td>
|
|
804
|
+
</tr>
|
|
805
|
+
<tr>
|
|
806
|
+
<td style="padding:15px">getGroupById(groupId, callback)</td>
|
|
807
|
+
<td style="padding:15px">Returns the changes from the provided ServiceNow instance.</td>
|
|
808
|
+
<td style="padding:15px">{base_path}/{version}/now/table/sys_user_group/{pathv1}?{query}</td>
|
|
809
|
+
<td style="padding:15px">Yes</td>
|
|
810
|
+
</tr>
|
|
811
|
+
<tr>
|
|
812
|
+
<td style="padding:15px">getGroups(sysparmQuery, callback)</td>
|
|
813
|
+
<td style="padding:15px">Returns the group from the provided ServiceNow instance.</td>
|
|
814
|
+
<td style="padding:15px">{base_path}/{version}/now/table/sys_user_group?{query}</td>
|
|
815
|
+
<td style="padding:15px">Yes</td>
|
|
816
|
+
</tr>
|
|
817
|
+
<tr>
|
|
818
|
+
<td style="padding:15px">createGroup(body, callback)</td>
|
|
819
|
+
<td style="padding:15px">Creates a change in the provided ServiceNow instance.</td>
|
|
820
|
+
<td style="padding:15px">{base_path}/{version}/now/table/sys_user_group?{query}</td>
|
|
821
|
+
<td style="padding:15px">Yes</td>
|
|
822
|
+
</tr>
|
|
823
|
+
<tr>
|
|
824
|
+
<td style="padding:15px">updateGroup(groupId, body, callback)</td>
|
|
825
|
+
<td style="padding:15px">Updates a change in the provided ServiceNow instance.</td>
|
|
826
|
+
<td style="padding:15px">{base_path}/{version}/now/table/sys_user_group/{pathv1}?{query}</td>
|
|
827
|
+
<td style="padding:15px">Yes</td>
|
|
828
|
+
</tr>
|
|
829
|
+
<tr>
|
|
830
|
+
<td style="padding:15px">deleteGroup(groupId, callback)</td>
|
|
831
|
+
<td style="padding:15px">Deletes the specified record from the specified table.</td>
|
|
832
|
+
<td style="padding:15px">{base_path}/{version}/now/table/sys_user_group/{pathv1}?{query}</td>
|
|
833
|
+
<td style="padding:15px">Yes</td>
|
|
834
|
+
</tr>
|
|
835
|
+
<tr>
|
|
836
|
+
<td style="padding:15px">getConfigItemById(itemId, callback)</td>
|
|
837
|
+
<td style="padding:15px">Returns the changes from the provided ServiceNow instance.</td>
|
|
838
|
+
<td style="padding:15px">{base_path}/{version}/now/table/cmdb_ci/{pathv1}?{query}</td>
|
|
839
|
+
<td style="padding:15px">Yes</td>
|
|
840
|
+
</tr>
|
|
841
|
+
<tr>
|
|
842
|
+
<td style="padding:15px">getConfigItems(sysparmQuery, callback)</td>
|
|
843
|
+
<td style="padding:15px">Returns the ConfigItem from the provided ServiceNow instance.</td>
|
|
844
|
+
<td style="padding:15px">{base_path}/{version}/now/table/cmdb_ci?{query}</td>
|
|
845
|
+
<td style="padding:15px">Yes</td>
|
|
846
|
+
</tr>
|
|
847
|
+
<tr>
|
|
848
|
+
<td style="padding:15px">createConfigItem(body, callback)</td>
|
|
849
|
+
<td style="padding:15px">Creates a change in the provided ServiceNow instance.</td>
|
|
850
|
+
<td style="padding:15px">{base_path}/{version}/now/table/cmdb_ci?{query}</td>
|
|
851
|
+
<td style="padding:15px">Yes</td>
|
|
852
|
+
</tr>
|
|
853
|
+
<tr>
|
|
854
|
+
<td style="padding:15px">updateConfigItem(itemId, body, callback)</td>
|
|
855
|
+
<td style="padding:15px">Updates a change in the provided ServiceNow instance.</td>
|
|
856
|
+
<td style="padding:15px">{base_path}/{version}/now/table/cmdb_ci/{pathv1}?{query}</td>
|
|
857
|
+
<td style="padding:15px">Yes</td>
|
|
858
|
+
</tr>
|
|
859
|
+
<tr>
|
|
860
|
+
<td style="padding:15px">deleteConfigItem(itemId, callback)</td>
|
|
861
|
+
<td style="padding:15px">Deletes the specified record from the specified table.</td>
|
|
862
|
+
<td style="padding:15px">{base_path}/{version}/now/table/cmdb_ci/{pathv1}?{query}</td>
|
|
863
|
+
<td style="padding:15px">Yes</td>
|
|
864
|
+
</tr>
|
|
865
|
+
<tr>
|
|
866
|
+
<td style="padding:15px">getArticleById(articleId, callback)</td>
|
|
867
|
+
<td style="padding:15px">Returns the changes from the provided ServiceNow instance.</td>
|
|
868
|
+
<td style="padding:15px">{base_path}/{version}/now/table/kb_knowledge/{pathv1}?{query}</td>
|
|
869
|
+
<td style="padding:15px">Yes</td>
|
|
870
|
+
</tr>
|
|
871
|
+
<tr>
|
|
872
|
+
<td style="padding:15px">getArticles(sysparmQuery, callback)</td>
|
|
873
|
+
<td style="padding:15px">Returns the Article from the provided ServiceNow instance.</td>
|
|
874
|
+
<td style="padding:15px">{base_path}/{version}/now/table/kb_knowledge?{query}</td>
|
|
875
|
+
<td style="padding:15px">Yes</td>
|
|
876
|
+
</tr>
|
|
877
|
+
<tr>
|
|
878
|
+
<td style="padding:15px">createArticle(body, callback)</td>
|
|
879
|
+
<td style="padding:15px">Creates a change in the provided ServiceNow instance.</td>
|
|
880
|
+
<td style="padding:15px">{base_path}/{version}/now/table/kb_knowledge?{query}</td>
|
|
881
|
+
<td style="padding:15px">Yes</td>
|
|
882
|
+
</tr>
|
|
883
|
+
<tr>
|
|
884
|
+
<td style="padding:15px">updateArticle(articleId, body, callback)</td>
|
|
885
|
+
<td style="padding:15px">Updates a change in the provided ServiceNow instance.</td>
|
|
886
|
+
<td style="padding:15px">{base_path}/{version}/now/table/kb_knowledge/{pathv1}?{query}</td>
|
|
887
|
+
<td style="padding:15px">Yes</td>
|
|
888
|
+
</tr>
|
|
889
|
+
<tr>
|
|
890
|
+
<td style="padding:15px">deleteArticle(articleId, callback)</td>
|
|
891
|
+
<td style="padding:15px">Deletes the specified record from the specified table.</td>
|
|
892
|
+
<td style="padding:15px">{base_path}/{version}/now/table/kb_knowledge/{pathv1}?{query}</td>
|
|
893
|
+
<td style="padding:15px">Yes</td>
|
|
894
|
+
</tr>
|
|
895
|
+
<tr>
|
|
896
|
+
<td style="padding:15px">getProblemById(problemId, callback)</td>
|
|
897
|
+
<td style="padding:15px">Returns the changes from the provided ServiceNow instance.</td>
|
|
898
|
+
<td style="padding:15px">{base_path}/{version}/now/table/problem/{pathv1}?{query}</td>
|
|
899
|
+
<td style="padding:15px">Yes</td>
|
|
900
|
+
</tr>
|
|
901
|
+
<tr>
|
|
902
|
+
<td style="padding:15px">getProblems(sysparmQuery, callback)</td>
|
|
903
|
+
<td style="padding:15px">Returns the Problem from the provided ServiceNow instance.</td>
|
|
904
|
+
<td style="padding:15px">{base_path}/{version}/now/table/problem?{query}</td>
|
|
905
|
+
<td style="padding:15px">Yes</td>
|
|
906
|
+
</tr>
|
|
907
|
+
<tr>
|
|
908
|
+
<td style="padding:15px">createProblem(body, callback)</td>
|
|
909
|
+
<td style="padding:15px">Creates a change in the provided ServiceNow instance.</td>
|
|
910
|
+
<td style="padding:15px">{base_path}/{version}/now/table/problem?{query}</td>
|
|
911
|
+
<td style="padding:15px">Yes</td>
|
|
912
|
+
</tr>
|
|
913
|
+
<tr>
|
|
914
|
+
<td style="padding:15px">updateProblem(problemId, body, callback)</td>
|
|
915
|
+
<td style="padding:15px">Updates a change in the provided ServiceNow instance.</td>
|
|
916
|
+
<td style="padding:15px">{base_path}/{version}/now/table/problem/{pathv1}?{query}</td>
|
|
917
|
+
<td style="padding:15px">Yes</td>
|
|
918
|
+
</tr>
|
|
919
|
+
<tr>
|
|
920
|
+
<td style="padding:15px">deleteProblem(problemId, callback)</td>
|
|
921
|
+
<td style="padding:15px">Deletes the specified record from the specified table.</td>
|
|
922
|
+
<td style="padding:15px">{base_path}/{version}/now/table/problem/{pathv1}?{query}</td>
|
|
923
|
+
<td style="padding:15px">Yes</td>
|
|
924
|
+
</tr>
|
|
925
|
+
<tr>
|
|
926
|
+
<td style="padding:15px">getRequestsById(requestId, callback)</td>
|
|
927
|
+
<td style="padding:15px">Returns the changes from the provided ServiceNow instance.</td>
|
|
928
|
+
<td style="padding:15px">{base_path}/{version}/now/table/sc_request/{pathv1}?{query}</td>
|
|
929
|
+
<td style="padding:15px">Yes</td>
|
|
930
|
+
</tr>
|
|
931
|
+
<tr>
|
|
932
|
+
<td style="padding:15px">getRequests(sysparmQuery, callback)</td>
|
|
933
|
+
<td style="padding:15px">Returns the Requests from the provided ServiceNow instance.</td>
|
|
934
|
+
<td style="padding:15px">{base_path}/{version}/now/table/sc_request?{query}</td>
|
|
935
|
+
<td style="padding:15px">Yes</td>
|
|
936
|
+
</tr>
|
|
937
|
+
<tr>
|
|
938
|
+
<td style="padding:15px">createRequests(body, callback)</td>
|
|
939
|
+
<td style="padding:15px">Creates a change in the provided ServiceNow instance.</td>
|
|
940
|
+
<td style="padding:15px">{base_path}/{version}/now/table/sc_request?{query}</td>
|
|
941
|
+
<td style="padding:15px">Yes</td>
|
|
942
|
+
</tr>
|
|
943
|
+
<tr>
|
|
944
|
+
<td style="padding:15px">updateRequests(requestId, body, callback)</td>
|
|
945
|
+
<td style="padding:15px">Updates a change in the provided ServiceNow instance.</td>
|
|
946
|
+
<td style="padding:15px">{base_path}/{version}/now/table/sc_request/{pathv1}?{query}</td>
|
|
947
|
+
<td style="padding:15px">Yes</td>
|
|
948
|
+
</tr>
|
|
949
|
+
<tr>
|
|
950
|
+
<td style="padding:15px">deleteRequests(requestId, callback)</td>
|
|
951
|
+
<td style="padding:15px">Deletes the specified record from the specified table.</td>
|
|
952
|
+
<td style="padding:15px">{base_path}/{version}/now/table/sc_request/{pathv1}?{query}</td>
|
|
953
|
+
<td style="padding:15px">Yes</td>
|
|
954
|
+
</tr>
|
|
955
|
+
<tr>
|
|
956
|
+
<td style="padding:15px">getRequestItemsById(itemId, callback)</td>
|
|
957
|
+
<td style="padding:15px">Returns the changes from the provided ServiceNow instance.</td>
|
|
958
|
+
<td style="padding:15px">{base_path}/{version}/now/table/sc_req_item/{pathv1}?{query}</td>
|
|
959
|
+
<td style="padding:15px">Yes</td>
|
|
960
|
+
</tr>
|
|
961
|
+
<tr>
|
|
962
|
+
<td style="padding:15px">getRequestItems(sysparmQuery, callback)</td>
|
|
963
|
+
<td style="padding:15px">Returns the RequestItems from the provided ServiceNow instance.</td>
|
|
964
|
+
<td style="padding:15px">{base_path}/{version}/now/table/sc_req_item?{query}</td>
|
|
965
|
+
<td style="padding:15px">Yes</td>
|
|
966
|
+
</tr>
|
|
967
|
+
<tr>
|
|
968
|
+
<td style="padding:15px">createRequestItems(body, callback)</td>
|
|
969
|
+
<td style="padding:15px">Creates a change in the provided ServiceNow instance.</td>
|
|
970
|
+
<td style="padding:15px">{base_path}/{version}/now/table/sc_req_item?{query}</td>
|
|
971
|
+
<td style="padding:15px">Yes</td>
|
|
972
|
+
</tr>
|
|
973
|
+
<tr>
|
|
974
|
+
<td style="padding:15px">updateRequestItems(itemId, body, callback)</td>
|
|
975
|
+
<td style="padding:15px">Updates a change in the provided ServiceNow instance.</td>
|
|
976
|
+
<td style="padding:15px">{base_path}/{version}/now/table/sc_req_item/{pathv1}?{query}</td>
|
|
977
|
+
<td style="padding:15px">Yes</td>
|
|
978
|
+
</tr>
|
|
979
|
+
<tr>
|
|
980
|
+
<td style="padding:15px">deleteRequestItems(itemId, callback)</td>
|
|
981
|
+
<td style="padding:15px">Deletes the specified record from the specified table.</td>
|
|
982
|
+
<td style="padding:15px">{base_path}/{version}/now/table/sc_req_item/{pathv1}?{query}</td>
|
|
983
|
+
<td style="padding:15px">Yes</td>
|
|
984
|
+
</tr>
|
|
985
|
+
<tr>
|
|
986
|
+
<td style="padding:15px">getUsersById(userId, callback)</td>
|
|
987
|
+
<td style="padding:15px">Returns the changes from the provided ServiceNow instance.</td>
|
|
988
|
+
<td style="padding:15px">{base_path}/{version}/now/table/sys_user/{pathv1}?{query}</td>
|
|
989
|
+
<td style="padding:15px">Yes</td>
|
|
990
|
+
</tr>
|
|
991
|
+
<tr>
|
|
992
|
+
<td style="padding:15px">getUsers(sysparmQuery, callback)</td>
|
|
993
|
+
<td style="padding:15px">Returns the Users from the provided ServiceNow instance.</td>
|
|
994
|
+
<td style="padding:15px">{base_path}/{version}/now/table/sys_user?{query}</td>
|
|
995
|
+
<td style="padding:15px">Yes</td>
|
|
996
|
+
</tr>
|
|
997
|
+
<tr>
|
|
998
|
+
<td style="padding:15px">createUsers(body, callback)</td>
|
|
999
|
+
<td style="padding:15px">Creates a change in the provided ServiceNow instance.</td>
|
|
1000
|
+
<td style="padding:15px">{base_path}/{version}/now/table/sys_user?{query}</td>
|
|
1001
|
+
<td style="padding:15px">Yes</td>
|
|
1002
|
+
</tr>
|
|
1003
|
+
<tr>
|
|
1004
|
+
<td style="padding:15px">updateUsers(userId, body, callback)</td>
|
|
1005
|
+
<td style="padding:15px">Updates a change in the provided ServiceNow instance.</td>
|
|
1006
|
+
<td style="padding:15px">{base_path}/{version}/now/table/sys_user/{pathv1}?{query}</td>
|
|
1007
|
+
<td style="padding:15px">Yes</td>
|
|
1008
|
+
</tr>
|
|
1009
|
+
<tr>
|
|
1010
|
+
<td style="padding:15px">deleteUsers(userId, callback)</td>
|
|
1011
|
+
<td style="padding:15px">Deletes the specified record from the specified table.</td>
|
|
1012
|
+
<td style="padding:15px">{base_path}/{version}/now/table/sys_user/{pathv1}?{query}</td>
|
|
1013
|
+
<td style="padding:15px">Yes</td>
|
|
1014
|
+
</tr>
|
|
1015
|
+
<tr>
|
|
1016
|
+
<td style="padding:15px">getMajorIncident(incidentId, callback)</td>
|
|
1017
|
+
<td style="padding:15px">This method retrieves records for communication cards. The cards include total count of each card.</td>
|
|
1018
|
+
<td style="padding:15px">{base_path}/{version}/sn_major_inc_mgmt/mim/status/{pathv1}?{query}</td>
|
|
1019
|
+
<td style="padding:15px">Yes</td>
|
|
1020
|
+
</tr>
|
|
1021
|
+
<tr>
|
|
1022
|
+
<td style="padding:15px">createMajorIncident(incidentId, body, callback)</td>
|
|
1023
|
+
<td style="padding:15px">This method performs UI actions and returns success status on completion of action.</td>
|
|
1024
|
+
<td style="padding:15px">{base_path}/{version}/sn_major_inc_mgmt/mim/state/{pathv1}?{query}</td>
|
|
1025
|
+
<td style="padding:15px">Yes</td>
|
|
1026
|
+
</tr>
|
|
1027
|
+
<tr>
|
|
1028
|
+
<td style="padding:15px">createChangeRequestRiskAssessment(riskAssessment, callback)</td>
|
|
1029
|
+
<td style="padding:15px">Creates a change request risk assessment</td>
|
|
1030
|
+
<td style="padding:15px">{base_path}/{version}/sn_chg_rest/change/risk_copy_asmt?{query}</td>
|
|
1031
|
+
<td style="padding:15px">Yes</td>
|
|
1032
|
+
</tr>
|
|
1033
|
+
<tr>
|
|
1034
|
+
<td style="padding:15px">autoApproveChangeRequest(changeId, approval, callback)</td>
|
|
1035
|
+
<td style="padding:15px">auto approve change request</td>
|
|
1036
|
+
<td style="padding:15px">{base_path}/{version}/sn_chg_rest/change/{pathv1}/approvals?{query}</td>
|
|
1037
|
+
<td style="padding:15px">Yes</td>
|
|
1038
|
+
</tr>
|
|
168
1039
|
</table>
|
|
169
1040
|
<br>
|