fluentcrm_update_smart_link
Update a smart link in FluentCRM to modify URL targeting, apply or remove tags and lists, and configure auto-login settings for marketing automation workflows.
Instructions
Aktualizuje Smart Link (może nie być dostępne w obecnej wersji)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| apply_lists | No | ||
| apply_tags | No | ||
| auto_login | No | ||
| remove_lists | No | ||
| remove_tags | No | ||
| smartLinkId | Yes | ID Smart Link | |
| target_url | No | ||
| title | No |
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"
},
"smartLinkId": {
"description": "ID Smart Link",
"type": "number"
},
"target_url": {
"type": "string"
},
"title": {
"type": "string"
}
},
"required": [
"smartLinkId"
],
"type": "object"
}