submit_change_for_approval
Submit a change request for approval in ServiceNow by providing the change ID and optional comments. Streamline the approval process for IT changes.
Instructions
Submit a change request for approval
Input Schema
Name | Required | Description | Default |
---|---|---|---|
params | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"SubmitChangeForApprovalParams": {
"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"
}
},
"properties": {
"params": {
"$ref": "#/$defs/SubmitChangeForApprovalParams"
}
},
"required": [
"params"
],
"title": "submit_change_for_approvalArguments",
"type": "object"
}