update_memo
Modify existing memos by updating content, changing visibility settings, or pinning important notes in the Memos knowledge management system.
Instructions
Update an existing memo.
Args: memo_uid: The UID of the memo to update (e.g., "abc123") content: New content for the memo (optional) visibility: New visibility level - PUBLIC, PROTECTED, or PRIVATE (optional) pinned: Whether to pin the memo (optional)
Returns: JSON string containing the updated memo details
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| memo_uid | Yes | ||
| content | No | ||
| visibility | No | ||
| pinned | No |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
},
"memo_uid": {
"type": "string"
},
"pinned": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null
},
"visibility": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
}
},
"required": [
"memo_uid"
],
"type": "object"
}