ServiceNow Object Delete
Version 1
This handler allows the generic deletion of a ServiceNow object when given a table and an id. Using the ServiceNow REST API and basic authentication, a URL is built up to delete an object from a table by its sys_id. If that REST call is successful, the handler execution will complete and an empty result set will be returned.
Parameters
Name |
Description |
Table |
The name of the table to delete an object from (ie. change_request,incident,task,etc). |
Id |
The id of the object to delete. |
Sample Configuration
Name |
Description |
Table |
incident |
Id |
85071a1347c12200e0ef563dbb9a71c1 |
Results
This handler does not return any results.
Changelog
ServiceNow Object Delete V1 (2017-09-14)
- Initial version. See README for details.
Related Handlers
- ServiceNow Change Create
- This handler allows you to create a new change request on Service Now.
- ServiceNow Change Retrieve
- This handler allows you to retrieve a change request from Service Now.
- ServiceNow Change Update
- This handler allows you to update a change request on Service Now.
- ServiceNow Group Create
- Creates a new Service Now user group.
- ServiceNow Group Retrieve
- Retrieves a Service Now user group
- ServiceNow Group Update
- Updates an existing Service Now user group.
- ServiceNow Incident Create
- ServiceNow, create a new incident.
- ServiceNow Incident Retrieve
- This handler allows you to retrieve an incident from Service Now.
- ServiceNow Incident Search
- Search for a Service Now incident.
- ServiceNow Incident Update
- ServiceNow, update an incident.
- ServiceNow Object Create
- Generically creates an object from a ServiceNow table when given a table name and a JSON body
- ServiceNow Object Retrieve
- Generically retrieves an object from a ServiceNow table when given a table name and an id
- ServiceNow Object Update
- Generically updates an object in a ServiceNow table when given a table name, a id, and a JSON body containing the parts of the object that should be updated.
- ServiceNow User Create
- ServiceNow, create a new user.
- ServiceNow User Retrieve
- ServiceNow, retrieve a user id for system user.
- ServiceNow User Update
- ServiceNow, update an existing user.