Create ServiceNow record
servicenow_create_recordAdd a new record to any ServiceNow table by providing table name and field-value pairs. Use it to create incidents, change requests, or catalog items without manual entry.
Instructions
Create a new record in a table with the given field values.
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'. | |
| fields | Yes | Field name/value pairs for the new record, e.g. { "short_description": "Printer down", "urgency": "2" }. | |
| instance | No | Connection profile to use for this call (default: the active profile). See servicenow_list_instances. |