SetCustomerAttribute
The SetCustomerAttribute aсtion sets the value for a specific attribute.
SetCustomerAttribute(
field: str,
value: str
)
Where:
- field: The name of the attribute you want to set.
- value: Any attribute value you want to set.
Example
{{Set(name="my_attribute", value=SetCustomerAttribute(field="project_attributes_restaurant_brunch_instruction", value="This is an instruction."))}}
The above code snippet sets the customer attribute value of "project_attributes_restaurant_brunch_instruction" to "This is an instruction."
Updated about 10 hours ago