monica_manage_tag
Manage tags in Monica CRM to group and categorize contacts. Perform actions like listing, creating, updating, or deleting tags to organize contact data efficiently.
Instructions
List, inspect, create, update, or delete tags. Tags allow you to group and categorize contacts.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
action | Yes | ||
limit | No | ||
page | No | ||
payload | No | ||
tagId | No |
Input Schema (JSON Schema)
{
"properties": {
"action": {
"enum": [
"list",
"get",
"create",
"update",
"delete"
],
"type": "string"
},
"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"
},
"tagId": {
"exclusiveMinimum": 0,
"type": "integer"
}
},
"required": [
"action"
],
"type": "object"
}