fluentcrm_attach_contact_to_list
Assign a contact to one or multiple marketing lists in FluentCRM using their subscriber ID and list IDs to organize contacts for targeted campaigns and communications.
Instructions
Przypisuje kontakt do listy
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| listIds | Yes | Lista ID list | |
| subscriberId | Yes | ID kontaktu |
Input Schema (JSON Schema)
{
"properties": {
"listIds": {
"description": "Lista ID list",
"items": {
"type": "number"
},
"type": "array"
},
"subscriberId": {
"description": "ID kontaktu",
"type": "number"
}
},
"required": [
"subscriberId",
"listIds"
],
"type": "object"
}