Integromat 自定义 Webhook 队列不断填​​充相同的销售人员数据

Integromat custom webhook queue keeps filling with the same salesforce data

我有一个以自定义 webhook 开始的 Integromat 场景设置。 Webhook 的数据来自 Salesforce。一切正常,除了 webhook 队列似乎每 2 小时保持 运行 相同的数据。例如,我在 Salesforce 中执行触发到 webhook 的出站消息的操作,Integromat 场景触发并执行我想要的操作......然后两小时后它再次执行......然后再过两个小时它执行它再次。好像服务器缓冲区没有清除(大胆猜测,我认为 Integromat 甚至不允许访问清除它)。

我在 Zapier 上有一个非常相似的流程,由完全相同的 Salesforce 事件触发,所以我不认为是 Salesforce 循环发送数据。出于成本原因,我正在尝试将工作流程从 Zapier 迁移到 Integromat,但如果此错误未修复,显然无法做到。

如有任何想法,我们将不胜感激。谢谢。

感谢 Diego 和 eyescream。我能够在 Salesforce 中看到消息在 Salesforce 端失败,因为没有发回确认。对于在 Integromat 中遇到此问题的任何其他人,您需要添加第二步 Webhook 响应并将其结构化为:

状态:200

Body:

    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Body>
    <notificationsResponse xmlns="http://soap.sforce.com/2005/09/outbound">
        <Ack>true</Ack>
    </notificationsResponse>
</soapenv:Body></soapenv:Envelope>

然后成功了,SF 得到确认并停止尝试发送消息。我不需要添加任何自定义 headers.