Tool details
| Field | Value |
|---|---|
| Name | servicenow__create_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"
},
"short_description": {
"type": "string",
"description": "Incident short description"
},
"description": {
"type": "string",
"description": "Incident description"
},
"impact": {
"type": "string",
"description": "Business impact, typically 1, 2, or 3"
},
"urgency": {
"type": "string",
"description": "Incident urgency, typically 1, 2, or 3"
},
"category": {
"type": "string",
"description": "Incident category"
},
"assignment_group": {
"type": "string",
"description": "Assignment group sys_id or display value"
}
},
"required": [
"instanceHost",
"short_description"
],
"description": "Input schema for the servicenow__create_incident tool."
}