monica_manage_relationship
Manage and track relationships between contacts in Monica CRM. List, inspect, create, update, or delete connections to ensure accurate and organized contact networks.
Instructions
List, inspect, create, update, or delete relationships between contacts. Use this to confirm existing connections or link two contacts once you know the correct relationshipTypeId.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
action | Yes | ||
contactId | No | ||
limit | No | ||
page | No | ||
payload | No | ||
relationshipId | 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": {
"contactIsId": {
"exclusiveMinimum": 0,
"type": "integer"
},
"ofContactId": {
"exclusiveMinimum": 0,
"type": "integer"
},
"relationshipTypeId": {
"exclusiveMinimum": 0,
"type": "integer"
}
},
"type": "object"
},
"relationshipId": {
"exclusiveMinimum": 0,
"type": "integer"
}
},
"required": [
"action"
],
"type": "object"
}