update_changeset
Modify an existing ServiceNow changeset by updating its name, description, developer, or state. Ensures accurate and current changeset details for streamlined development workflows.
Instructions
Update an existing changeset in ServiceNow
Input Schema
Name | Required | Description | Default |
---|---|---|---|
params | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"UpdateChangesetParams": {
"description": "Parameters for updating a changeset.",
"properties": {
"changeset_id": {
"description": "Changeset ID or sys_id",
"title": "Changeset Id",
"type": "string"
},
"description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Description of the changeset",
"title": "Description"
},
"developer": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Developer responsible for the changeset",
"title": "Developer"
},
"name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Name of the changeset",
"title": "Name"
},
"state": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "State of the changeset",
"title": "State"
}
},
"required": [
"changeset_id"
],
"title": "UpdateChangesetParams",
"type": "object"
}
},
"properties": {
"params": {
"$ref": "#/$defs/UpdateChangesetParams"
}
},
"required": [
"params"
],
"title": "update_changesetArguments",
"type": "object"
}