screets Chat 允许您创建和跟踪有关客户的自定义数据属性。
(!) 开始之前
在此处查看如何创建和管理 自定义数据属性。
通过 JavaScript 发送 “顾客” 数据属性
创建属性不会为您的任何客户填充,您需要通过 JavaScript 将其发送到 screets 聊天室。可以将自定义属性(键/值对)添加到代码段中。
<script>
window.screetsxi = {
appid: "APP_ID",
// Add your custom attributes here ("key": "value")
custom_attrs: {
"Plan ID": "1",
"Plan Name": "Basic",
"Last Order ID": "12345",
"Last Order Details": "iPhone X, 256GB, Black",
"Last Order At": 1150466020, // Date (unix timestamp)
"Last Order Cost": 992.5, // Decimal
},
}
</script>
发送 “聊天” 数据属性
当您通过 JavaScript 将自定义属性发送到 screets 聊天时,它们将被添加到相关聊天中。
使用自定义属性启动新聊天
您可以使用scxi(“startChat”)方法启动具有自定义数据属性的聊天。
scxi('startChat', {
msg: 'First message',
// Add your custom attributes here ("key": "value")
custom_attrs: {
"Order ID": "12345",
"Order Details": "iPhone 13, 256GB, Red",
"Order At": 1150466020, // Date (unix timestamp)
"Order Cost": 990.0, // Decimal },
}
);