submit_change_for_approval
Submit a change request for approval in ServiceNow by providing the change ID and optional comments to initiate the approval workflow.
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)
{
"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"
],
"type": "object"
}