Tasks Today

Incomplete tasks displayed as an interactive checkbox list. On GAS uses the Tasks API for live data; on other surfaces renders from an items[] array or the Google Tasks REST API.

Surfaces
apps-script-webmeet-stage
Fields
FieldType
titlestring. Card heading. Default is "Today's Tasks".optional
max_resultsinteger. Maximum tasks to show. Default 10.optional
list_namestring (optional, gas-native). Name of the task list.optional
itemsarray (static connector). Array of {title, due, completed} for non-GAS surfaces.required
auth_tokenstring (api connector). OAuth2 bearer token for REST API.required
Example payload
{
  "type": "tasks_today",
  "items": [
    {
      "label": "Item 1"
    },
    {
      "label": "Item 2"
    }
  ],
  "auth_token": "your-api-token"
}
ARD catalog entry
{
  "identifier": "urn:air:a2uicatalog.ai:atom:tasks_today",
  "displayName": "Tasks Today",
  "type": "application/vnd.a2ui.atom+json",
  "url": "https://a2uicatalog.ai/atoms/tasks_today",
  "capabilities": [
    "apps-script-web",
    "meet-stage"
  ],
  "description": "Incomplete tasks displayed as an interactive checkbox list. On GAS uses the Tasks API for live data; on other surfaces renders from an items[] array or the Google Tasks REST API.",
  "representativeQueries": [
    "show a task checklist \u2014 live via Tasks API on GAS, items[] array on other surfaces",
    "incomplete tasks displayed as an interactive checkbox list. on gas uses the tasks api for live data;",
    "render a tasks today"
  ]
}
← Full ARD catalog Try it live →
Deploy your own renderer

The renderer is open source. Deploy your own instance in 4 commands — you own the URL, no dependency on the demo endpoint.

git clone https://github.com/a2uicatalog/a2ui
cd apps-script-surface/gas-schema-renderer
clasp push && clasp deploy
Full deploy guide →