update_scrum_task
Modify an existing scrum task in ServiceNow to update details like priority, hours, assignment, state, or descriptions for accurate project tracking.
Instructions
Update an existing scrum task in ServiceNow
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| assigned_to | No | User assigned to the scrum task | |
| assignment_group | No | Group assigned to the scrum task | |
| description | No | Detailed description of the scrum task | |
| hours | No | Actual Hours for the scrum task | |
| planned_hours | No | Planned hours for the scrum task | |
| priority | No | Priority of scrum task (1 is Critical, 2 is High, 3 is Moderate, 4 is Low) | |
| remaining_hours | No | Remaining hours for the scrum task | |
| scrum_task_id | Yes | Scrum Task ID or sys_id | |
| short_description | No | Short description of the scrum task | |
| state | No | State of scrum task (-6 is Draft,1 is Ready, 2 is Work in progress, 3 is Complete, 4 is Cancelled) | |
| type | No | Type of scrum task (1 is Analysis, 2 is Coding, 3 is Documentation, 4 is Testing) | |
| work_notes | No | Work notes to add to the scrum task |
Input Schema (JSON Schema)
{
"properties": {
"assigned_to": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "User assigned to the scrum task",
"title": "Assigned To"
},
"assignment_group": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Group assigned to the scrum task",
"title": "Assignment Group"
},
"description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Detailed description of the scrum task",
"title": "Description"
},
"hours": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"description": "Actual Hours for the scrum task",
"title": "Hours"
},
"planned_hours": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"description": "Planned hours for the scrum task",
"title": "Planned Hours"
},
"priority": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Priority of scrum task (1 is Critical, 2 is High, 3 is Moderate, 4 is Low)",
"title": "Priority"
},
"remaining_hours": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"description": "Remaining hours for the scrum task",
"title": "Remaining Hours"
},
"scrum_task_id": {
"description": "Scrum Task ID or sys_id",
"title": "Scrum Task Id",
"type": "string"
},
"short_description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Short description of the scrum task",
"title": "Short Description"
},
"state": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "State of scrum task (-6 is Draft,1 is Ready, 2 is Work in progress, 3 is Complete, 4 is Cancelled)",
"title": "State"
},
"type": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Type of scrum task (1 is Analysis, 2 is Coding, 3 is Documentation, 4 is Testing)",
"title": "Type"
},
"work_notes": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Work notes to add to the scrum task",
"title": "Work Notes"
}
},
"required": [
"scrum_task_id"
],
"type": "object"
}