reject_change
Reject a ServiceNow change request by providing the change ID and rejection reason. Ensures proper documentation and approval workflow compliance.
Instructions
Reject a change request
Input Schema
Name | Required | Description | Default |
---|---|---|---|
params | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"RejectChangeParams": {
"description": "Parameters for rejecting a change request.",
"properties": {
"approver_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "ID of the approver",
"title": "Approver Id"
},
"change_id": {
"description": "Change request ID or sys_id",
"title": "Change Id",
"type": "string"
},
"rejection_reason": {
"description": "Reason for rejection",
"title": "Rejection Reason",
"type": "string"
}
},
"required": [
"change_id",
"rejection_reason"
],
"title": "RejectChangeParams",
"type": "object"
}
},
"properties": {
"params": {
"$ref": "#/$defs/RejectChangeParams"
}
},
"required": [
"params"
],
"title": "reject_changeArguments",
"type": "object"
}