create_task
Create new tasks in Autotask by specifying project ID, title, status, assigned resources, estimated hours, and scheduling details to organize project work.
Instructions
Create a new task in Autotask
Input Schema
Name | Required | Description | Default |
---|---|---|---|
assignedResourceID | No | Assigned resource ID | |
description | No | Task description | |
endDateTime | No | Task end date/time (ISO format) | |
estimatedHours | No | Estimated hours for the task | |
projectID | Yes | Project ID for the task | |
startDateTime | No | Task start date/time (ISO format) | |
status | Yes | Task status (1=New, 2=In Progress, 5=Complete) | |
title | Yes | Task title |
Input Schema (JSON Schema)
{
"properties": {
"assignedResourceID": {
"description": "Assigned resource ID",
"type": "number"
},
"description": {
"description": "Task description",
"type": "string"
},
"endDateTime": {
"description": "Task end date/time (ISO format)",
"type": "string"
},
"estimatedHours": {
"description": "Estimated hours for the task",
"type": "number"
},
"projectID": {
"description": "Project ID for the task",
"type": "number"
},
"startDateTime": {
"description": "Task start date/time (ISO format)",
"type": "string"
},
"status": {
"description": "Task status (1=New, 2=In Progress, 5=Complete)",
"type": "number"
},
"title": {
"description": "Task title",
"type": "string"
}
},
"required": [
"projectID",
"title",
"status"
],
"type": "object"
}