Laravel Copper CRM Webhooks-我需要在哪里放置Webhooks以获取事件通知?

Laravel Copper CRM Webhooks-我需要在哪里放置Webhooks以获取事件通知?,laravel,crm,Laravel,Crm,我正在使用Laravel设置从铜缆CRM端获取Webhook。他们提供了这个链接 基本上,每当CRM上的Opportunity发生更新事件时,我都需要在特定站点上获得通知。下面是文档中提供的webhook的代码 { "ids": [<entity_id_1>, <entity_id_2>, ...], "type": "<entity_type>", "event": "<event_type>", "subscription_i

我正在使用Laravel设置从铜缆CRM端获取Webhook。他们提供了这个链接

基本上,每当CRM上的Opportunity发生更新事件时,我都需要在特定站点上获得通知。下面是文档中提供的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>]
  }
}
{
“ID”:[,…],
“类型”:“,
“事件”:“,
“订阅id”:,
“机密字段1”:“,
“机密字段2”:“,
“更新的_属性”:{
“字段名称”:[,]
}
}

我需要在哪里放置要执行的代码??在铜现场?但是在哪里呢?任何帮助任何教程???

要接收通知,您必须通过将端点发送到您希望接收信息的位置来订阅copper,这里我为您留下详细的文档,可以帮助您