create_project
Create new projects in Autotask by specifying company ID, project name, status, and optional details like description, dates, manager, and estimated hours to organize and track project work.
Instructions
Create a new project in Autotask
Input Schema
Name | Required | Description | Default |
---|---|---|---|
companyID | Yes | Company ID for the project | |
description | No | Project description | |
endDate | No | Project end date (YYYY-MM-DD) | |
estimatedHours | No | Estimated hours for the project | |
projectManagerResourceID | No | Project manager resource ID | |
projectName | Yes | Project name | |
startDate | No | Project start date (YYYY-MM-DD) | |
status | Yes | Project status (1=New, 2=In Progress, 5=Complete) |
Input Schema (JSON Schema)
{
"properties": {
"companyID": {
"description": "Company ID for the project",
"type": "number"
},
"description": {
"description": "Project description",
"type": "string"
},
"endDate": {
"description": "Project end date (YYYY-MM-DD)",
"type": "string"
},
"estimatedHours": {
"description": "Estimated hours for the project",
"type": "number"
},
"projectManagerResourceID": {
"description": "Project manager resource ID",
"type": "number"
},
"projectName": {
"description": "Project name",
"type": "string"
},
"startDate": {
"description": "Project start date (YYYY-MM-DD)",
"type": "string"
},
"status": {
"description": "Project status (1=New, 2=In Progress, 5=Complete)",
"type": "number"
}
},
"required": [
"companyID",
"projectName",
"status"
],
"type": "object"
}