create_changeset
Generate a changeset in ServiceNow by specifying the application, name, and optional details like developer and description to organize and track updates.
Instructions
Create a new changeset in ServiceNow
Input Schema
Name | Required | Description | Default |
---|---|---|---|
params | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"CreateChangesetParams": {
"description": "Parameters for creating a changeset.",
"properties": {
"application": {
"description": "Application the changeset belongs to",
"title": "Application",
"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": {
"description": "Name of the changeset",
"title": "Name",
"type": "string"
}
},
"required": [
"name",
"application"
],
"title": "CreateChangesetParams",
"type": "object"
}
},
"properties": {
"params": {
"$ref": "#/$defs/CreateChangesetParams"
}
},
"required": [
"params"
],
"title": "create_changesetArguments",
"type": "object"
}