fluentcrm_update_contact
Update contact details in FluentCRM marketing automation, including names and phone numbers, using the subscriber ID to modify customer information.
Instructions
Aktualizuje dane kontaktu
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| first_name | No | ||
| last_name | No | ||
| phone | No | ||
| subscriberId | Yes | ID kontaktu |
Input Schema (JSON Schema)
{
"properties": {
"first_name": {
"type": "string"
},
"last_name": {
"type": "string"
},
"phone": {
"type": "string"
},
"subscriberId": {
"description": "ID kontaktu",
"type": "number"
}
},
"required": [
"subscriberId"
],
"type": "object"
}