Copper CRM Webhooks - 我需要在哪里放置 webhooks 以获取事件通知?
Copper CRM Webhooks - where i need to place webhooks to get notifications on events?
我正在使用 Laravel 设置从 Copper CRM 端获取 webhook。他们提供了这个 link。
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>]
}
}
我需要把这段代码放在哪里执行??在铜网站上?但是哪里?任何帮助任何教程??
要接收通知,您必须通过发送要接收信息的端点来订阅 copper,在这里我为您提供了可以帮助您的详细文档
https://support.copper.com/hc/en-us/articles/217214766-Learn-more-about-Copper-Webhooks
我正在使用 Laravel 设置从 Copper CRM 端获取 webhook。他们提供了这个 link。
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>]
}
}
我需要把这段代码放在哪里执行??在铜网站上?但是哪里?任何帮助任何教程??
要接收通知,您必须通过发送要接收信息的端点来订阅 copper,在这里我为您提供了可以帮助您的详细文档
https://support.copper.com/hc/en-us/articles/217214766-Learn-more-about-Copper-Webhooks