Create Incident
servicenow_create_incidentCreates a new ServiceNow incident using a short description and optional fields for priority, category, assignment, and more. Returns the created incident's number and sys_id.
Instructions
Create a new ServiceNow incident.
Args:
short_description (string): One-line summary (required)
description (string): Detailed description
caller_id (string): sys_id or username of the caller/requester
category (string): Category (e.g., 'network', 'hardware', 'software', 'inquiry')
subcategory (string): Subcategory
priority (number): 1=Critical, 2=High, 3=Moderate, 4=Low, 5=Planning
urgency (number): 1=High, 2=Medium, 3=Low
impact (number): 1=High, 2=Medium, 3=Low
assignment_group (string): sys_id of the assignment group
assigned_to (string): sys_id of the assignee
additional_fields (object): Any additional field-value pairs
Returns: Created incident with number and sys_id
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| impact | No | 1=High, 2=Medium, 3=Low | |
| urgency | No | 1=High, 2=Medium, 3=Low | |
| category | No | Incident category | |
| priority | No | 1=Critical, 2=High, 3=Moderate, 4=Low, 5=Planning | |
| caller_id | No | sys_id or username of the caller | |
| assigned_to | No | sys_id of the assignee | |
| description | No | Detailed description | |
| subcategory | No | Incident subcategory | |
| response_format | No | Output format: 'markdown' (default) for human-readable or 'json' for structured data | markdown |
| assignment_group | No | sys_id of the assignment group | |
| additional_fields | No | Additional field-value pairs | |
| short_description | Yes | Short summary of the incident |