commit_changeset
Commit a changeset in ServiceNow to finalize and apply pending configuration or data changes using the specified changeset ID and optional commit message.
Instructions
Commit a changeset in ServiceNow
Input Schema
Name | Required | Description | Default |
---|---|---|---|
changeset_id | Yes | Changeset ID or sys_id | |
commit_message | No | Commit message |
Input Schema (JSON Schema)
{
"properties": {
"changeset_id": {
"description": "Changeset ID or sys_id",
"title": "Changeset Id",
"type": "string"
},
"commit_message": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Commit message",
"title": "Commit Message"
}
},
"required": [
"changeset_id"
],
"type": "object"
}