fluentcrm_validate_smart_link_data
Validate Smart Link data before creation to ensure proper configuration of title, URL, tags, lists, and auto-login settings in FluentCRM marketing automation.
Instructions
Waliduje dane Smart Link przed utworzeniem
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| apply_lists | No | ||
| apply_tags | No | ||
| auto_login | No | ||
| remove_lists | No | ||
| remove_tags | No | ||
| slug | No | Slug | |
| target_url | Yes | Docelowy URL | |
| title | Yes | Nazwa Smart Link |
Input Schema (JSON Schema)
{
"properties": {
"apply_lists": {
"items": {
"type": "number"
},
"type": "array"
},
"apply_tags": {
"items": {
"type": "number"
},
"type": "array"
},
"auto_login": {
"type": "boolean"
},
"remove_lists": {
"items": {
"type": "number"
},
"type": "array"
},
"remove_tags": {
"items": {
"type": "number"
},
"type": "array"
},
"slug": {
"description": "Slug",
"type": "string"
},
"target_url": {
"description": "Docelowy URL",
"type": "string"
},
"title": {
"description": "Nazwa Smart Link",
"type": "string"
}
},
"required": [
"title",
"target_url"
],
"type": "object"
}