Delete ServiceNow record
servicenow_delete_recordDelete a ServiceNow table record using its sys_id. Pass the table name and sys_id to remove the record, with optional apply flag to execute or preview changes.
Instructions
Delete a record from a table by its sys_id.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| apply | No | Execute the change. In the default plan mode, omitting this returns a non-mutating before/after preview; set true to apply. SN_WRITE_MODE=apply makes execution the default. | |
| table | Yes | Table name, e.g. 'incident'. | |
| sys_id | Yes | The sys_id of the record to delete. | |
| instance | No | Connection profile to use for this call (default: the active profile). See servicenow_list_instances. |