update_project
Modify an existing ServiceNow project by updating its details such as status, description, assignment group, completion percentage, and timeline information.
Instructions
Update an existing project in ServiceNow
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| assigned_to | No | User assigned to the project | |
| assignment_group | No | Group assigned to the project | |
| description | No | Detailed description of the project | |
| end_date | No | End date for the project | |
| percentage_complete | No | Percentage complete for the project | |
| project_id | Yes | Project ID or sys_id | |
| project_manager | No | Project manager for the project | |
| short_description | No | Project name of the project | |
| start_date | No | Start date for the project | |
| state | No | State of project (-5 is Pending,1 is Open, 2 is Work in progress, 3 is Closed Complete, 4 is Closed Incomplete, 5 is Closed Skipped) | |
| status | No | Status of the project (green, yellow, red) |
Input Schema (JSON Schema)
{
"properties": {
"assigned_to": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "User assigned to the project",
"title": "Assigned To"
},
"assignment_group": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Group assigned to the project",
"title": "Assignment Group"
},
"description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Detailed description of the project",
"title": "Description"
},
"end_date": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "End date for the project",
"title": "End Date"
},
"percentage_complete": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"description": "Percentage complete for the project",
"title": "Percentage Complete"
},
"project_id": {
"description": "Project ID or sys_id",
"title": "Project Id",
"type": "string"
},
"project_manager": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Project manager for the project",
"title": "Project Manager"
},
"short_description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Project name of the project",
"title": "Short Description"
},
"start_date": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Start date for the project",
"title": "Start Date"
},
"state": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "State of project (-5 is Pending,1 is Open, 2 is Work in progress, 3 is Closed Complete, 4 is Closed Incomplete, 5 is Closed Skipped)",
"title": "State"
},
"status": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Status of the project (green, yellow, red)",
"title": "Status"
}
},
"required": [
"project_id"
],
"type": "object"
}