Open App

Daily Notes

CLI commands for daily notes

daily-notes list

monoid daily-notes list [options]

List daily notes

Options

FlagDescriptionDefault
--limit <n>Max results
--offset <n>Skip n results
--dates <value>dates (comma-separated IDs)

Example

monoid daily-notes list [options]

Example output

{
  "data": [
    {
      "date": "2026-04-13",
      "content": "Priorities for today...",
      "updatedAt": 1760000000000
    }
  ]
}

daily-notes get

monoid daily-notes get <date>

Get daily note by date

Arguments

NameRequiredDescription
dateYes

Example

monoid daily-notes get <date>

Example output

{
  "data": {
    "date": "2026-04-13",
    "content": "Priorities for today...",
    "updatedAt": 1760000000000
  }
}

daily-notes create

monoid daily-notes create [options]

Create daily note

Options

FlagDescriptionDefault
--body <json>Request body JSON (merged with flags)
--date <value>date
--content <value>content

Example

monoid daily-notes create [options]

Example output

{
  "data": {
    "date": "2026-04-13",
    "content": "Priorities for today...",
    "updatedAt": 1760000000000
  }
}

daily-notes update

monoid daily-notes update [options] <date>

Update daily note

Arguments

NameRequiredDescription
dateYes

Options

FlagDescriptionDefault
--body <json>Request body JSON (merged with flags)
--ids <ids>Comma-separated IDs for bulk update (max 25)
--dates <dates>Comma-separated dates for bulk update (max 25)
--content <value>content

Example

monoid daily-notes update [options] <date>

Example output

{
  "data": {
    "date": "2026-04-13",
    "content": "Priorities for today...",
    "updatedAt": 1760000000000
  }
}

daily-notes delete

monoid daily-notes delete [options] <date>

Delete daily note

Arguments

NameRequiredDescription
dateYes

Options

FlagDescriptionDefault
--ids <ids>Comma-separated IDs for bulk delete (max 25)
--dates <dates>Comma-separated dates for bulk delete (max 25)

Example

monoid daily-notes delete [options] <date>

Example output

{
  "data": null,
  "deleted": true
}

See Daily Notes API reference for HTTP endpoint details.