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 localDate = `${now.getFullYear()}-${now.getMonth() + 1}-${now.getDate()}`;
const daily = {
  markup: "my new todo",
  local_date: localDate
};
4 Likes