nooks
GitHubInstall
Lists and items

List dated items

ListDatedItems returns unticked Items with a due date, across every List the Member can reach. Today, Upcoming and the calendar are all views over this: a calendar is a lens on dates, not a second home for Lists.

GET
/api/v1/dated-items

Query Parameters

from?string

The earliest day to include, YYYY-MM-DD. Empty means no lower bound, which is how Today gathers everything overdue as well as everything due.

to?string

The latest day to include, YYYY-MM-DD. Required.

Response Body

application/json

application/json

curl -X GET "https://example.com/api/v1/dated-items"
{  "items": [    {      "item": {        "uid": "string",        "label": "string",        "quantity": "string",        "dueOn": "string",        "done": true,        "addedByName": "string",        "doneByName": "string",        "doneAt": "string",        "doneByUid": "string",        "note": "string",        "addedViaToken": "string"      },      "listUid": "string",      "listName": "string"    }  ]}