note_manage
Create, update, delete, or restore a note for a contact. • action="create": Add a new note. Requires contact_id and body. Optional title, is_pinned. • action="update": Update an existing note. Requires id. Optional title, body, is_pinned. • action="delete": Soft-delete a note. Requires id. • action="restore": Restore a soft-deleted note. Requires id.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | The note ID (required for "update", "delete", "restore") | |
| body | No | Note body, supports markdown (required for "create", optional for "update") | |
| title | No | Note title (optional for "create" and "update") | |
| action | Yes | Action to perform | |
| is_pinned | No | Pin/unpin note (optional for "create" and "update") | |
| contact_id | No | The contact ID (required for "create") |