monica_manage_group
Organize contacts into named groups like 'Family' or 'Travel buddies' by listing, inspecting, creating, updating, or deleting collections in Monica CRM.
Instructions
List, inspect, create, update, or delete contact groups. Use this to organize contacts into named collections (e.g., "Family", "Travel buddies").
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| action | Yes | ||
| groupId | No | ||
| limit | No | ||
| page | No | ||
| payload | No |
Input Schema (JSON Schema)
{
"properties": {
"action": {
"enum": [
"list",
"get",
"create",
"update",
"delete"
],
"type": "string"
},
"groupId": {
"exclusiveMinimum": 0,
"type": "integer"
},
"limit": {
"maximum": 100,
"minimum": 1,
"type": "integer"
},
"page": {
"minimum": 1,
"type": "integer"
},
"payload": {
"additionalProperties": false,
"properties": {
"name": {
"maxLength": 255,
"minLength": 1,
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}
},
"required": [
"action"
],
"type": "object"
}