update_epic
Modify an existing ServiceNow epic by updating its description, priority, state, assignment group, assigned user, or adding work notes to track progress and changes.
Instructions
Update an existing epic in ServiceNow
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| assigned_to | No | User assigned to the epic | |
| assignment_group | No | Group assigned to the epic | |
| description | No | Detailed description of the epic | |
| epic_id | Yes | Epic ID or sys_id | |
| priority | No | Priority of epic (1 is Critical, 2 is High, 3 is Moderate, 4 is Low, 5 is Planning) | |
| short_description | No | Short description of the epic | |
| state | No | State of story (-6 is Draft,1 is Ready,2 is Work in progress, 3 is Complete, 4 is Cancelled) | |
| work_notes | No | Work notes to add to the epic. Used for adding notes and comments to an epic |
Input Schema (JSON Schema)
{
"properties": {
"assigned_to": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "User assigned to the epic",
"title": "Assigned To"
},
"assignment_group": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Group assigned to the epic",
"title": "Assignment Group"
},
"description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Detailed description of the epic",
"title": "Description"
},
"epic_id": {
"description": "Epic ID or sys_id",
"title": "Epic Id",
"type": "string"
},
"priority": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Priority of epic (1 is Critical, 2 is High, 3 is Moderate, 4 is Low, 5 is Planning)",
"title": "Priority"
},
"short_description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Short description of the epic",
"title": "Short Description"
},
"state": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "State of story (-6 is Draft,1 is Ready,2 is Work in progress, 3 is Complete, 4 is Cancelled)",
"title": "State"
},
"work_notes": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Work notes to add to the epic. Used for adding notes and comments to an epic",
"title": "Work Notes"
}
},
"required": [
"epic_id"
],
"type": "object"
}