Tool details
| Field | Value |
|---|---|
| Name | servicenow__update_incident |
| Group | Integrations |
Playground
Input schema
input-schema.json
{
"type": "object",
"properties": {
"instanceHost": {
"type": "string",
"description": "ServiceNow instance host, for example example.service-now.com"
},
"sysId": {
"type": "string",
"description": "Incident sys_id"
},
"state": {
"type": "string",
"description": "Incident state"
},
"priority": {
"type": "string",
"description": "Incident priority"
},
"assignment_group": {
"type": "string",
"description": "Assignment group sys_id or display value"
},
"assigned_to": {
"type": "string",
"description": "Assignee sys_id or display value"
},
"work_notes": {
"type": "string",
"description": "Internal work notes"
},
"comments": {
"type": "string",
"description": "Customer-visible comments"
}
},
"required": [
"instanceHost",
"sysId"
],
"description": "Input schema for the servicenow__update_incident tool."
}