get_changeset_details
Retrieve comprehensive details about a specific ServiceNow changeset using its ID, including change information, status, and implementation details for change management tracking.
Instructions
Get detailed information about a specific changeset
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| changeset_id | Yes | Changeset ID or sys_id |
Input Schema (JSON Schema)
{
"properties": {
"changeset_id": {
"description": "Changeset ID or sys_id",
"title": "Changeset Id",
"type": "string"
}
},
"required": [
"changeset_id"
],
"type": "object"
}