gws.tasks.create
Add a task to Google Tasks with a required title, optional due date, notes, account, and task list. Returns the created task's title, due date, and ID.
Instructions
Create a new task in a task list. title is required. due is an RFC3339 timestamp (only the date portion is stored by Google Tasks — the time is discarded). tasklist defaults to the account's default list ('@default'). Returns the new task's title, due date, and ID.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| due | No | Due date (RFC3339, e.g. 2026-08-20T00:00:00Z; only the date is stored) | |
| notes | No | Free-text notes/description for the task | |
| title | Yes | Task title | |
| account | No | Account label or email. Uses default if omitted. | |
| tasklist | No | Task list ID (default: '@default') |