/servicenow | Type: Application | PCID required: Yes
Incidents, requests, and workflows
Tools
| Tool | Description |
|---|---|
servicenow_list_incidents | List incidents in ServiceNow with optional filters |
servicenow_get_apps | Get ServiceNow applications |
servicenow_get_incident | Get details of a specific ServiceNow incident using its sys_id |
servicenow_get_current_user | Get current user account details from ServiceNow |
servicenow_create_incident | Create a new incident in ServiceNow |
servicenow_update_incident | Update an existing ServiceNow incident |
servicenow_list_incidents
List incidents in ServiceNow with optional filters Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
active | boolean | No | — | Ticket status either true or false |
priority | number | No | — | Priority of the ticket ranges from 1 to 4 with 1 being the highest & 4 being lowest |
state | string | No | — | State of the ticket |
servicenow_get_apps
Get ServiceNow applicationsservicenow_get_incident
Get details of a specific ServiceNow incident using its sys_id Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
sysId | string | Yes | — | sys_id of the incident |
servicenow_get_current_user
Get current user account details from ServiceNowservicenow_create_incident
Create a new incident in ServiceNow Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
short_description | string | Yes | — | Short description of the incident |
description | string | Yes | — | Description of the incident |
assigned_to | string | No | — | Person assigned to for the incident |
priority | string | No | — | Priority of the incident |
category | string | No | — | Category of the incident hardware, software, network, inquiries, etc. |
servicenow_update_incident
Update an existing ServiceNow incident Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
sysId | string | Yes | — | sys_id of the incident |
state | string | No | — | State of the ticket |
assigned_to | string | No | — | Person assigned to for the incident |
work_notes | string | No | — | Work notes of the incident |

