Tool details
| Field | Value |
|---|---|
| Name | servicenow__create_request_item |
| Group | Integrations |
Playground
Input schema
input-schema.json
{
"type": "object",
"properties": {
"instanceHost": {
"type": "string",
"description": "ServiceNow instance host, for example example.service-now.com"
},
"request": {
"type": "string",
"description": "Parent sc_request sys_id"
},
"cat_item": {
"type": "string",
"description": "Catalog item sys_id"
},
"short_description": {
"type": "string",
"description": "Requested item short description"
},
"description": {
"type": "string",
"description": "Requested item details"
},
"requested_for": {
"type": "string",
"description": "Requester sys_id or display value"
},
"assignment_group": {
"type": "string",
"description": "Assignment group sys_id or display value"
},
"state": {
"type": "string",
"description": "Requested item state"
},
"stage": {
"type": "string",
"description": "Requested item stage"
},
"work_notes": {
"type": "string",
"description": "Internal work notes"
},
"comments": {
"type": "string",
"description": "Customer-visible comments"
}
},
"required": [
"instanceHost",
"request",
"short_description"
],
"description": "Input schema for the servicenow__create_request_item tool."
}