get_change_request_details
Retrieve comprehensive details of a specific change request by its ID using the ServiceNow API. Simplify tracking and management of change requests in ServiceNow instances.
Instructions
Get detailed information about a specific change request
Input Schema
Name | Required | Description | Default |
---|---|---|---|
params | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"GetChangeRequestDetailsParams": {
"description": "Parameters for getting change request details.",
"properties": {
"change_id": {
"description": "Change request ID or sys_id",
"title": "Change Id",
"type": "string"
}
},
"required": [
"change_id"
],
"title": "GetChangeRequestDetailsParams",
"type": "object"
}
},
"properties": {
"params": {
"$ref": "#/$defs/GetChangeRequestDetailsParams"
}
},
"required": [
"params"
],
"title": "get_change_request_detailsArguments",
"type": "object"
}