create_change_request
Generate a change request in ServiceNow to manage and track changes effectively. Define details like type, description, impact, risk, and dates for streamlined approval and execution.
Instructions
Create a new change request in ServiceNow
Input Schema
Name | Required | Description | Default |
---|---|---|---|
params | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"CreateChangeRequestParams": {
"description": "Parameters for creating 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"
},
"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"
},
"requested_by": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "User who requested the change",
"title": "Requested By"
},
"risk": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Risk level of the change",
"title": "Risk"
},
"short_description": {
"description": "Short description of the change request",
"title": "Short Description",
"type": "string"
},
"start_date": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Planned start date (YYYY-MM-DD HH:MM:SS)",
"title": "Start Date"
},
"type": {
"description": "Type of change (normal, standard, emergency)",
"title": "Type",
"type": "string"
}
},
"required": [
"short_description",
"type"
],
"title": "CreateChangeRequestParams",
"type": "object"
}
},
"properties": {
"params": {
"$ref": "#/$defs/CreateChangeRequestParams"
}
},
"required": [
"params"
],
"title": "create_change_requestArguments",
"type": "object"
}