Copper CRM Webhooks-我需要放置Webhooks以获得事件通知吗?

问题描述 投票:0回答:1

我正在使用Laravel设置从Copper CRM方面获取webhooks。他们提供了此链接。

https://developer.copper.com/#b22d5c44-038c-4089-b202-86bcc3058788

基本上,每当CRM机会上发生更新事件时,我都需要在特定站点上获得通知。这是文档中提供的该webhook的代码。

{
  "ids": [<entity_id_1>, <entity_id_2>, ...],
  "type": "<entity_type>",
  "event": "<event_type>",
  "subscription_id": <subscription_id>,
  "secret_field_1": "<string>",
  "secret_field_2": "<string>",
  "updated_attributes": {
    "field_name": [<old_value>, <new_value>]
  }
}

我需要将该代码放置在哪里?在铜网站上?但是哪里?任何帮助任何教程??

laravel crm
1个回答
1
投票

要接收通知,您必须通过发送要接收信息的端点来订阅铜,在这里,我将为您提供详细的文档,可以为您提供帮助

https://support.copper.com/hc/en-us/articles/217214766-Learn-more-about-Copper-Webhooks

© www.soinside.com 2019 - 2024. All rights reserved.