fluentcrm_create_tag
Create new tags in FluentCRM to organize and categorize contacts for targeted marketing campaigns and automation workflows.
Instructions
Tworzy nowy tag w FluentCRM
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| description | No | Opis tagu | |
| slug | No | Slug tagu (np. "aw-progress-75") | |
| title | Yes | Nazwa tagu (np. "AW-progress-75") |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "Opis tagu",
"type": "string"
},
"slug": {
"description": "Slug tagu (np. \"aw-progress-75\")",
"type": "string"
},
"title": {
"description": "Nazwa tagu (np. \"AW-progress-75\")",
"type": "string"
}
},
"required": [
"title"
],
"type": "object"
}