update_change_request
Modify details of an existing change request in ServiceNow, including assignment group, category, description, impact, risk, start/end dates, state, and work notes using the Change Id.
Instructions
Update an existing change request in ServiceNow
Input Schema
Name | Required | Description | Default |
---|---|---|---|
params | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"UpdateChangeRequestParams": {
"description": "Parameters for updating a change request.",
"properties": {
"assignment_group": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Group assigned to the change",
"title": "Assignment Group"
},
"category": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Category of the change",
"title": "Category"
},
"change_id": {
"description": "Change request ID or sys_id",
"title": "Change Id",
"type": "string"
},
"description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Detailed description of the change request",
"title": "Description"
},
"end_date": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Planned end date (YYYY-MM-DD HH:MM:SS)",
"title": "End Date"
},
"impact": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Impact of the change",
"title": "Impact"
},
"risk": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Risk level of the change",
"title": "Risk"
},
"short_description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Short description of the change request",
"title": "Short Description"
},
"start_date": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Planned start date (YYYY-MM-DD HH:MM:SS)",
"title": "Start Date"
},
"state": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "State of the change request",
"title": "State"
},
"work_notes": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Work notes to add to the change request",
"title": "Work Notes"
}
},
"required": [
"change_id"
],
"title": "UpdateChangeRequestParams",
"type": "object"
}
},
"properties": {
"params": {
"$ref": "#/$defs/UpdateChangeRequestParams"
}
},
"required": [
"params"
],
"title": "update_change_requestArguments",
"type": "object"
}