add_change_task
Add a task to a specific change request in ServiceNow, including details like assigned user, description, and planned start/end dates.
Instructions
Add a task to a change request
Input Schema
Name | Required | Description | Default |
---|---|---|---|
params | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"AddChangeTaskParams": {
"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"
}
},
"properties": {
"params": {
"$ref": "#/$defs/AddChangeTaskParams"
}
},
"required": [
"params"
],
"title": "add_change_taskArguments",
"type": "object"
}