monica_manage_reminder
Manage reminders for specific contacts in Monica CRM. Create, update, delete, or list follow-ups and stay-in-touch nudges to maintain consistent engagement with your contacts.
Instructions
List, inspect, create, update, or delete reminders. Use this to schedule follow-ups or stay-in-touch nudges for specific contacts.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
action | Yes | ||
contactId | No | ||
limit | No | ||
page | No | ||
payload | No | ||
reminderId | 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"
},
"page": {
"minimum": 1,
"type": "integer"
},
"payload": {
"additionalProperties": false,
"properties": {
"contactId": {
"exclusiveMinimum": 0,
"type": "integer"
},
"description": {
"anyOf": [
{
"anyOf": [
{
"not": {}
},
{
"maxLength": 1000000,
"type": "string"
}
]
},
{
"type": "null"
}
]
},
"frequencyNumber": {
"minimum": 1,
"type": "integer"
},
"frequencyType": {
"enum": [
"one_time",
"day",
"week",
"month",
"year"
],
"type": "string"
},
"nextExpectedDate": {
"pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}$",
"type": "string"
},
"title": {
"maxLength": 100000,
"minLength": 1,
"type": "string"
}
},
"type": "object"
},
"reminderId": {
"exclusiveMinimum": 0,
"type": "integer"
}
},
"required": [
"action"
],
"type": "object"
}