我在通过 Zapier 在对讲机中标记潜在客户时遇到问题。Zapier 提供了一个"标记用户"操作,但没有针对潜在客户的操作。由于对讲机要求在给定其 ID 的情况下标记潜在客户(而不是通过电子邮件(,因此无法使用现有的 Zapier 操作。
这是我
的解决方案:
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);