add_task
Create new tasks in your revenue management system with descriptions, priorities, due dates, and time estimates for organized business operations.
Instructions
Add a new task
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| dueDate | No | YYYY-MM-DD | |
| estimatedHours | No | ||
| notes | No | ||
| priority | No | ||
| relatedTo | No | ||
| taskDescription | Yes |
Input Schema (JSON Schema)
{
"properties": {
"dueDate": {
"description": "YYYY-MM-DD",
"type": "string"
},
"estimatedHours": {
"type": "number"
},
"notes": {
"type": "string"
},
"priority": {
"enum": [
"High",
"Medium",
"Low"
],
"type": "string"
},
"relatedTo": {
"type": "string"
},
"taskDescription": {
"type": "string"
}
},
"required": [
"taskDescription"
],
"type": "object"
}