monica_manage_note
Manage notes attached to Monica CRM contacts by listing, creating, updating, or deleting journal snippets for better contact tracking and organization.
Instructions
List, inspect, create, update, or delete notes attached to a contact. Use this to capture or revise journal snippets.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
action | Yes | ||
contactId | No | ||
limit | No | ||
noteId | No | ||
page | No | ||
payload | No |
Input Schema (JSON Schema)
{
"properties": {
"action": {
"enum": [
"list",
"get",
"create",
"update",
"delete"
],
"type": "string"
},
"contactId": {
"exclusiveMinimum": 0,
"type": "integer"
},
"limit": {
"maximum": 100,
"minimum": 1,
"type": "integer"
},
"noteId": {
"exclusiveMinimum": 0,
"type": "integer"
},
"page": {
"minimum": 1,
"type": "integer"
},
"payload": {
"additionalProperties": false,
"properties": {
"body": {
"maxLength": 1000000,
"type": "string"
},
"contactId": {
"exclusiveMinimum": 0,
"type": "integer"
},
"isFavorited": {
"type": "boolean"
}
},
"type": "object"
}
},
"required": [
"action"
],
"type": "object"
}