Daily Append endpoint doesn’t use users timezone

We’ve now shipped this in 3.1.8 :tada:

The Raycast extension should be updated in the next few days once approved on their end.

You can send a daily append request like so:

{
  "markup": "my new todo",
  "local_date": "2024-12-17"
}

If you’re using javascript, you can do something like this:

const now = new Date();
const year = now.getFullYear();
const month = (now.getMonth() + 1).toString().padStart(2, "0");
const day = now.getDate().toString().padStart(2, "0");
const daily = {
  markup: "my new todo",
  local_date: `${year}-${month}-${day}`
};
4 Likes