Create task item
org.intentschema.productivity.tasks.item.create.v1
JSON: bare · @sha256:b7bf748a451a…
Hash: sha256:b7bf748a451ae36dd0e413fec40885ad73adbcf84a094ffa9a8150b3dea835d5
Creates a new task in a to-do list.
Payload
| Field | Type | Description |
target * | Target | |
object * | object | |
idempotency_key | string | |
object
| Field | Type | Description |
title * | string | |
notes | string | |
due_at | string (date-time) | |
priority | enum: low | normal | high | |
list_id | string | Optional list/project identifier. Defaults to the provider's primary list. |
Result
| Field | Type | Description |
external_id * | string | |
created_at | string (date-time) | |
Examples
simple task
{
"target": {
"system": "google_tasks"
},
"object": {
"title": "Draft Q3 board update"
}
}
task with due date and priority
{
"target": {
"system": "google_tasks"
},
"object": {
"title": "Send expense report",
"notes": "Approver: Finance.",
"due_at": "2026-04-25T17:00:00-07:00",
"priority": "high"
}
}