create_task
Add a new task in Amazing Marvin with title, due date, project, category, and optional note directly through AI assistant integrations.
Instructions
Create a new task in Amazing Marvin
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category_id | No | ||
due_date | No | ||
note | No | ||
project_id | No | ||
title | Yes |
Input Schema (JSON Schema)
{
"properties": {
"category_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Category Id"
},
"due_date": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Due Date"
},
"note": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Note"
},
"project_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Project Id"
},
"title": {
"title": "Title",
"type": "string"
}
},
"required": [
"title"
],
"type": "object"
}