add_change_task
Add a task to a specific change request in ServiceNow by providing the change ID, task details, and optional fields like assignee and planned dates.
Instructions
Add a task to a change request
Input Schema
Name | Required | Description | Default |
---|---|---|---|
assigned_to | No | User assigned to the task | |
change_id | Yes | Change request ID or sys_id | |
description | No | Detailed description of the task | |
planned_end_date | No | Planned end date (YYYY-MM-DD HH:MM:SS) | |
planned_start_date | No | Planned start date (YYYY-MM-DD HH:MM:SS) | |
short_description | Yes | Short description of the task |
Input Schema (JSON Schema)
{
"description": "Parameters for adding a task to a change request.",
"properties": {
"assigned_to": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "User assigned to the task",
"title": "Assigned To"
},
"change_id": {
"description": "Change request ID or sys_id",
"title": "Change Id",
"type": "string"
},
"description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Detailed description of the task",
"title": "Description"
},
"planned_end_date": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Planned end date (YYYY-MM-DD HH:MM:SS)",
"title": "Planned End Date"
},
"planned_start_date": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Planned start date (YYYY-MM-DD HH:MM:SS)",
"title": "Planned Start Date"
},
"short_description": {
"description": "Short description of the task",
"title": "Short Description",
"type": "string"
}
},
"required": [
"change_id",
"short_description"
],
"title": "AddChangeTaskParams",
"type": "object"
}