我正在使用Laravel设置从Copper CRM方面获取webhooks。他们提供了此链接。
https://developer.copper.com/#b22d5c44-038c-4089-b202-86bcc3058788
基本上,每当CRM机会上发生Update事件时,我都需要在特定站点上获得通知。这是文档中提供的该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>]
}
}
我需要在哪里放置此代码以执行?在铜网站上?但是哪里?任何帮助任何教程??
答案 0 :(得分:1)
要接收通知,您必须通过发送要接收信息的端点来订阅铜,在这里,我将为您提供详细的文档,以帮助您
https://support.copper.com/hc/en-us/articles/217214766-Learn-more-about-Copper-Webhooks