submit_change_for_approval
Submit a change request for approval in ServiceNow using the unique change ID and optional comments to streamline the approval process.
Instructions
Submit a change request for approval
Input Schema
Name | Required | Description | Default |
---|---|---|---|
approval_comments | No | Comments for the approval request | |
change_id | Yes | Change request ID or sys_id |
Input Schema (JSON Schema)
{
"description": "Parameters for submitting a change request for approval.",
"properties": {
"approval_comments": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Comments for the approval request",
"title": "Approval Comments"
},
"change_id": {
"description": "Change request ID or sys_id",
"title": "Change Id",
"type": "string"
}
},
"required": [
"change_id"
],
"title": "SubmitChangeForApprovalParams",
"type": "object"
}