update_change_request
Modify an existing ServiceNow change request by updating fields like state, risk, description, or assignment group to reflect current requirements or progress.
Instructions
Update an existing change request in ServiceNow
Input Schema
Name | Required | Description | Default |
---|---|---|---|
assignment_group | No | Group assigned to the change | |
category | No | Category of the change | |
change_id | Yes | Change request ID or sys_id | |
description | No | Detailed description of the change request | |
end_date | No | Planned end date (YYYY-MM-DD HH:MM:SS) | |
impact | No | Impact of the change | |
risk | No | Risk level of the change | |
short_description | No | Short description of the change request | |
start_date | No | Planned start date (YYYY-MM-DD HH:MM:SS) | |
state | No | State of the change request | |
work_notes | No | Work notes to add to the change request |
Input Schema (JSON Schema)
{
"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"
}