fluentcrm_create_smart_link
Create smart links in FluentCRM that automatically apply tags, add to lists, and manage user actions when clicked for targeted marketing automation.
Instructions
Tworzy nowy Smart Link (może nie być dostępne w obecnej wersji)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| apply_lists | No | ID list do dodania po kliknięciu | |
| apply_tags | No | ID tagów do dodania po kliknięciu | |
| auto_login | No | Czy automatycznie logować użytkownika | |
| remove_lists | No | ID list do usunięcia po kliknięciu | |
| remove_tags | No | ID tagów do usunięcia po kliknięciu | |
| slug | No | Slug (np. "aw-link-webinar-mail") | |
| target_url | Yes | Docelowy URL | |
| title | Yes | Nazwa Smart Link (np. "AW-Link-Webinar-Mail") |
Input Schema (JSON Schema)
{
"properties": {
"apply_lists": {
"description": "ID list do dodania po kliknięciu",
"items": {
"type": "number"
},
"type": "array"
},
"apply_tags": {
"description": "ID tagów do dodania po kliknięciu",
"items": {
"type": "number"
},
"type": "array"
},
"auto_login": {
"description": "Czy automatycznie logować użytkownika",
"type": "boolean"
},
"remove_lists": {
"description": "ID list do usunięcia po kliknięciu",
"items": {
"type": "number"
},
"type": "array"
},
"remove_tags": {
"description": "ID tagów do usunięcia po kliknięciu",
"items": {
"type": "number"
},
"type": "array"
},
"slug": {
"description": "Slug (np. \"aw-link-webinar-mail\")",
"type": "string"
},
"target_url": {
"description": "Docelowy URL",
"type": "string"
},
"title": {
"description": "Nazwa Smart Link (np. \"AW-Link-Webinar-Mail\")",
"type": "string"
}
},
"required": [
"title",
"target_url"
],
"type": "object"
}