monica_create_note
Create and attach personalized notes to specific contacts in Monica CRM to enhance communication and track interactions effectively.
Instructions
Attach a note to a Monica contact.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
body | Yes | ||
contactId | Yes | ||
isFavorited | No |
Input Schema (JSON Schema)
{
"properties": {
"body": {
"minLength": 1,
"type": "string"
},
"contactId": {
"exclusiveMinimum": 0,
"type": "integer"
},
"isFavorited": {
"type": "boolean"
}
},
"required": [
"contactId",
"body"
],
"type": "object"
}