reject_change
Reject a ServiceNow change request by specifying the request ID and reason for rejection, ensuring proper workflow management and authorization.
Instructions
Reject a change request
Input Schema
Name | Required | Description | Default |
---|---|---|---|
approver_id | No | ID of the approver | |
change_id | Yes | Change request ID or sys_id | |
rejection_reason | Yes | Reason for rejection |
Input Schema (JSON Schema)
{
"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"
}