Daily Notes
CLI commands for daily notes
daily-notes list
monoid daily-notes list [options]
List daily-notes
Options
| Flag | Description | Default |
|---|---|---|
--limit <n> | Max results | — |
--offset <n> | Skip n results | — |
--dates <value> | Filter by dates | — |
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 one daily-notes by date
Arguments
| Name | Required | Description |
|---|---|---|
date | Yes | — |
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-notes
Options
| Flag | Description | Default |
|---|---|---|
--body <json> | Request body JSON (merged with flags) | — |
--date <value> | date | — |
--content <value> | content | — |
--if-not-exists | Return existing if match found | — |
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-notes
Arguments
| Name | Required | Description |
|---|---|---|
date | Yes | — |
Options
| Flag | Description | Default |
|---|---|---|
--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-notes
Arguments
| Name | Required | Description |
|---|---|---|
date | Yes | — |
Options
| Flag | Description | Default |
|---|---|---|
--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
}Related API
See Daily Notes API reference for HTTP endpoint details.
© 2025 MONOid
All rights reserved.
All rights reserved.