我遇到了通过Zapier在对讲机中标记潜在客户的问题。 Zapier提供了一个标签用户"行动,但没有任何线索。由于Intercom要求根据ID(而非电子邮件)标记潜在客户,因此无法使用现有的Zapier操作。
答案 0 :(得分:1)
这是我的解决方案:
fetch('https://api.intercom.io/tags', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_ACCESS_TOKEN',
'Accept': 'application/json',
'Content-Type': 'application/json'
},
body: JSON.stringify({
name: 'YOUR TAG NAME',
user: [{ id: input.leadId }]
})
})
.then(function(res) {
callback(null, JSON.parse(res.text()));
})
.catch(callback);