publish_changeset
Publish a changeset in ServiceNow by providing the changeset ID and optional notes to update and deploy configurations or updates across the instance.
Instructions
Publish a changeset in ServiceNow
Input Schema
Name | Required | Description | Default |
---|---|---|---|
params | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"PublishChangesetParams": {
"description": "Parameters for publishing a changeset.",
"properties": {
"changeset_id": {
"description": "Changeset ID or sys_id",
"title": "Changeset Id",
"type": "string"
},
"publish_notes": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Notes for publishing",
"title": "Publish Notes"
}
},
"required": [
"changeset_id"
],
"title": "PublishChangesetParams",
"type": "object"
}
},
"properties": {
"params": {
"$ref": "#/$defs/PublishChangesetParams"
}
},
"required": [
"params"
],
"title": "publish_changesetArguments",
"type": "object"
}